Hello,
Please add this code to the functions.php of the child theme:
function woodmart_load_classes() {
$classes = array(
'Singleton.php',
'Ajaxresponse.php',
'Api.php',
'Cssgenerator.php',
'Googlefonts.php',
'Import.php',
'Importversion.php',
'Layout.php',
'License.php',
'Notices.php',
'Options.php',
'Stylesstorege.php',
'Theme.php',
'Themesettingscss.php',
'Wpbcssgenerator.php',
'Registry.php',
);
foreach ( $classes as $class ) {
$file_name = WOODMART_CLASSES . DIRECTORY_SEPARATOR . $class;
if ( file_exists( $file_name ) ) {
require $file_name;
}
}
}
Best Regards