Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @anassal,

    We sorry for that issue with the new update. We will release a quick fix for that in the next 1 or 2 days. For now, as a temporary solution, please try adding the custom PHP snippet code below through a child theme or Code Snippets plugin.

    add_action( 'wp', function() {
    	if ( is_shop() || is_product_category() || is_product_tag() || is_product_taxonomy() ) {
    		add_filter( 'botiga_content_class', 'botiga_equal_height_content_class' );
    	}
    } );

    We hope this helps!

    Kind Regards,

    Rodrigo.

    Thread Starter anassal

    (@anassal)

    Thanks for your help but that code isn’t working:

    see on:

    https://www.categorizedshark.com/shop/

    Hi @anassal,

    Please try with this new code:

    add_action( 'wp', function(){
    	if ( is_shop() || is_product_category() || is_product_tag() || is_product_taxonomy() ) {
    		add_filter( 'botiga_content_class', 'botiga_equal_height_content_class', 11 );
    	}
    } );

    Hope this helps!

    Kind Regards,

    Rodrigo.

    Thread Starter anassal

    (@anassal)

    Thanks Rodrigo, This code worked for me, thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Product equal height’ is closed to new replies.