• Hello, I need to edit the limit of category buttons displayed, so that the “show more” button does not appear. Right now I have 15 categories and it shows only 10 and then the “show more” button which is the one I want to remove and have all the categories shown at once.

Viewing 1 replies (of 1 total)
  • Plugin Support Facundo Arano

    (@aranofacundo)

    Hi there,

    I hope you’re doing well. To change the term limit in the dropdown filters, please add the following PHP code in the functions.php file of your current theme:

    if ( ! function_exists( 'yith_wcan_custom_dropdown_terms_per_page' ) ) {
    add_filter( 'yith_wcan_dropdown_terms_per_page', 'yith_wcan_custom_dropdown_terms_per_page' );
    function yith_wcan_custom_dropdown_terms_per_page( $limit ){
    $limit = 999;
    return $limit;
    }
    }

    We’ll remain at your disposal.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.