• How can I modify the yith_wcan_terms_on_first_loading filter hook in the free YITH plugin from the WordPress repository to change its value?

    I am trying to set the value to 20 using the following code:


    add_filter( 'yith_wcan_terms_on_first_loading', function( $number ) { $number = 20; return $number; }, 10, 1 );

    I’ve also attempted to…

    Read more

    OrionTraveler2 and tomsqum
    0 Comments