Hi,
I got question related to removing function from my theme file so I can override it in child theme functions.php file. I tried with some remove_action commands but didnt work.
This is function I need to unhook/remove somehow. Function that calls for home_title is causing me some issues with one widget, so I need to remove it. Any ideas? Thanks
<?php
}
public function home_title() {
if ( ! is_front_page() || is_home() ) {
return;
}
if ( is_page_template( 'page-templates/home-search.php' ) ) {?>