Hello,
I know that files from inc folder can’t be change in child theme like files from other theme folders, it’s only can modify in child theme functions.php.
I want to change inc/widgets/class-widget-layered-nav.php file…
I copied whole class in my child theme functions.php :
if ( ! class_exists( ‘WOODMART_Widget_Layered_Nav’ ) ) {
class WOODMART_Widget_Layered_Nav extends WPH_Widget {
….
} // class
}
But I got error Fatal error: Class ‘WPH_Widget’ not found in /app/public/wp-content/themes/woodmart-idc/functions.php on line
Can you give me a hint how to modify inc files in child theme?
Kind regards