Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Alessio Torrisi

    (@alessio91)

    HI there,
    thank you for contacting us.

    Please add following code in the file functions.php of your theme to change the query arg.

    add_filter( 'yith_wcan_query_param', 'yith_wcan_customize_query_param' );
    
    if( ! function_exists( 'yith_wcan_customize_query_param' ) ){
     function yith_wcan_customize_query_param( $param ){
      $param = 'filter';
      return $param;
     }
    }

    I hope be helpful for you.

    Hi,

    unfortunately, the code you provided does not work !

    It just stays the same annoying “?yith_wcan=1”.

    Could you please help to fix this ?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘custom parameter key’ is closed to new replies.