Home Forums WoodMart support forum Attributes Page Second Language Page Dublicates Content Reply To: Attributes Page Second Language Page Dublicates Content

#474505

Artem Temos
Keymaster

Try to add the following PHP code snippet to the child theme functions.php file to fix this

use XTS\Modules\Layouts\Shop_Archive;

add_action( 'init', function () {
	remove_filter( 'template_include', array( Shop_Archive::get_instance(), 'override_template' ), 20 );
	add_filter( 'template_include', array( Shop_Archive::get_instance(), 'override_template' ), 1000 );
}, 100);