Home › Forums › WoodMart support forum › Booked plugin conflict › Reply To: Booked plugin conflict
March 12, 2022 at 9:40 am
#360118
Artem Temos
Keymaster
Try to add the following PHP code snippet to the child theme functions.php file to fix this
add_action( 'woodmart_get_layout_id', function($main_class) {
if ( ! class_exists( 'Shop_Archive' ) ) {
$main_class->include_files();
}
} );