• Resolved vimalkiran

    (@vimalkiran)


    I am facing issue with displaying posts grid with the filter option on one of our website’s page. The plugin doesnt load by default upon opening the url. It only works when any of the filters are clicked. I have created the page using wp-bakery plugin where I have created sections and subsections to display various tabs of information. Kindly help me fix the issue. Thank you.

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter vimalkiran

    (@vimalkiran)

    For further understanding please refer to the following screenshot https://ibb.co/bdR0w2v

    Plugin Contributor Riddhi Shukla

    (@ridhimashukla)

    Hi,

    Thank you for reaching us…

    You have to reinitialize filter on click of tabs.

    You can ask visual support team for more guidance if they have provided action to do it.

    Thank You!

    Thread Starter vimalkiran

    (@vimalkiran)

    Please let me know how can I reinitialize filter on click of tabs. I am the only one handling the website. Kindly help me with a step by step process to get this issue resolved. It would be so much helpful for me. Thank you.

    Plugin Contributor Ketan Patel

    (@patelketan)

    Hello,

    Sorry for the inconvenience, initialize filter functionality not available in the free version.

    You are trying a temporary solution.
    Please go to wp-content -> plugin -> post-grid-and-filter-ultimate -> assets -> js -> pogaru-public.js and add and try the below code on line number 7.

    $(document).on('click', '.vc_tta-panel-title', function() {
    
     var cls_ele = $(this).closest('.vc_tta-panel');
     var filter_wrap	= cls_ele.find('.pgafu-filtr-container');
    
      /* Tweak for slick slider */
      $( filter_wrap ).each(function( index ) {
    
       var filter_id = $(this).attr('id');
    
       if( typeof(filter_id) !== 'undefined' && filter_id != '' ) {
        $('#'+filter_id).isotope('layout');
       }
     });
    });

    Please check and let me know if you have anything else.

    Thanks,

    Thread Starter vimalkiran

    (@vimalkiran)

    Thank you so much. That worked.

    Plugin Contributor Ketan Patel

    (@patelketan)

    Hello,

    If you like our plugin please rate and review it here.
    https://www.ads-software.com/support/plugin/post-grid-and-filter-ultimate/reviews/

    Thanks,

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Post Grid not loading properly’ is closed to new replies.