Home Forums WoodMart support forum Issues with categories styles in archive pages

Issues with categories styles in archive pages

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #497302

    metuza
    Participant

    Hello,

    I have just activated the new category style “Zoom out” and then i lost the bordered grid on the 3 first products in archive. You can see the issue here, https://www.arctic-fritid.as/produktkategori/jaktutstyr/

    If i enable any of the other category styles it is all ok, so it seems like it is only the “Zoom out” style that has this issue.

    Brgds
    Rune

    #497411

    Luke Nielsen
    Keymaster

    Hello,

    Sorry, in the next update it will be fixed, for now, you can use the below code for help. Define it in the functions.php file in your child theme.

    add_filter(
    	'product_cat_class',
    	function( $classes ) {
    		$classes[] = 'category-grid-item';
    
    		return $classes;
    	}
    );

    Kindly accept our sincere apologies for the inconvenience caused to you and don’t hesitate to reach out if you have any additional questions.

    Kind Regards

    #497523

    metuza
    Participant

    That did the trick. Thank you!

    Brgds
    Rune

    #497610

    Luke Nielsen
    Keymaster

    Hello,

    Always remember that you can reach out to us with any questions you may have.

    We wish you a splendid day!

    Kind Regards

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

The topic ‘Issues with categories styles in archive pages’ is closed to new replies.