Home Forums WoodMart support forum Layouts Bug After Latest Update

Layouts Bug After Latest Update

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #527359

    Mike
    Participant

    Hi, i use a custom product archive layout (its a clone of Mega Electronics demo) the product category elements i have setup to display categories (6 slides per page) and on some categories the navigation its not working anymore.

    I created a video so you can understood better, please check it on private content

    #527361

    Artem Temos
    Keymaster

    Hello,

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

    add_action( 'woodmart_option', function ( $value, $slug ) {
    	if ( $slug == 'swiper_library' ) {
    		return 'required';
    	}
    
    	return $value;
    }, 10, 2);

    Kind Regards

    #527363

    Mike
    Participant

    Its a know bug? so it will be fixed on a patch release or version or is it needed to keep it?

    #527366

    Artem Temos
    Keymaster

    Yes, we will fix it in the next update soon. Then you can remove this code from the child theme.

    #527377

    Mike
    Participant

    Thank you Artem, you can close this thread

    #527708

    Artem Temos
    Keymaster

    You are welcome. Feel free to contact us if you have any further questions.

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘Layouts Bug After Latest Update’ is closed to new replies.