Home Forums WoodMart support forum Categories with SVG icons Reply To: Categories with SVG icons

#48599

Artem Temos
Keymaster

Try to add the following code snippet to the Custom JS on document ready area in Theme Settings to fix this issue.

jQuery( '.product-grid-item' ).addClass( 'hover-width-small' );

jQuery(document).on('pjax:complete', function(xhr, textStatus, options) {
    jQuery( '.product-grid-item' ).addClass( 'hover-width-small' );
});