• Resolved nickberens360

    (@nickberens360)


    Greetings. I just purchased a license for the Filter add-on. I created a checkbox filter. After selecting a checkbox the chosen filter item is loaded but then the list of checkbox filters is disabled and grayed out. I am unable to filter further.

    The following are the shortcodes I am using. Any assistance would be greatly appreciated.

    <?php
    echo do_shortcode(‘[ajax_load_more_filters id=”listing_types_filter” target=”listing_types_target”]’);
    ?>

    <?php
    $term = get_search_query();
    echo do_shortcode(‘[ajax_load_more id=”listing_types_target” post_type=”post, listings” posts_per_page=”8″ order=”ASC” orderby=”title” transition_container=”false” button_label=”Load More” button_loading_label=”Loading” archive=”true” search=”‘ . $term . ‘” ] ‘);
    ?>

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Darren Cooney

    (@dcooney)

    Hi @nickberens360,
    This is a common issue for users. The problem is you have left out the required target and filters shortcode params from the core ALM shortcode so the shortcodes are not talking to each other.

    
    echo do_shortcode('[ajax_load_more id="listing_types_target" target="listing_types_filter" filters="true" post_type="post, listings" posts_per_page="8" order="ASC" orderby="title" transition_container="false" button_label="Load More" button_loading_label="Loading" archive="true" search="' . $term . '" ] ');
    

    Hope this helps.

    • This reply was modified 4 years, 7 months ago by Darren Cooney.
    Thread Starter nickberens360

    (@nickberens360)

    Hey, thanks for the fast response. that worked. great plugin btw!

    • This reply was modified 4 years, 7 months ago by nickberens360.
    Plugin Author Darren Cooney

    (@dcooney)

    Ok I responded above with solution to the issue.

    Plugin Author Darren Cooney

    (@dcooney)

    Hey, thanks for the fast response. that worked. great plugin btw!

    Oh great! Thanks ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Filtering Disabled after Selection’ is closed to new replies.