Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author themifyme

    (@themifyme)

    Hi,

    Your theme is missing the “columns-{n}” classname that is used by WC, it signifies how many columns the products grid are displayed in. Here’s an easy fix, you can add this JavaScript snippet to the footer of your website:

    
    <script>
    jQuery( document ).on( 'wpf_ajax_success', function() {
    	jQuery( '#content ul.products' ).addClass( 'columns-5' );
    } );
    </script>
    

    Usually an option is provided by themes to add custom codes to the footer, if not you can install a plugin for that like: https://en-gb.ww.wp.xz.cn/plugins/insert-headers-and-footers/.

    Please do let us know if you encounter any issues!

    Thread Starter alexsina

    (@alexsina)

    Sorry, I missed your this message.

    what does 5 mean in ‘columns-5’? does it mean 5 columns in product achieve page?

    Thanks

    Plugin Author themifyme

    (@themifyme)

    Hi,

    Yes, it means 5 Columns in Product Archive.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Some empty with 1.3.0 version’ is closed to new replies.