• Hi.

    I would like to show all brands on the dropdown list and remove the Load more link. Is that possible?

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Iván Sosa

    (@ivansosa)

    Hi there,

    Please, add this custom code in the functions.php of your theme:

    if(!function_exists('yith_wcan_change_terms_limit')){
        function yith_change_terms_limit (){
            return 999;
        }
        add_filter('yith_wcan_dropdown_terms_per_page', 'yith_wcan_change_terms_limit' );
    }

    Try it and let us know if that worked.

    Have a nice day!

    Thread Starter alfonsoseinto

    (@alfonsoseinto)

    Hi, thank you for yor answer.

    Unfortunately, it doesn’t work, I get a critical error.

    Plugin Support Pablo Pérez

    (@pperez001)

    Hi there

    Please use this code instead:

    if(!function_exists('yith_wcan_change_terms_limit')){
        function yith_wcan_change_terms_limit (){
            return 0;
        }
        add_filter('yith_wcan_dropdown_terms_per_page', 'yith_wcan_change_terms_limit' );
    }

    Let me know if you still have any issue.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Display all brands or category’ is closed to new replies.