Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author TC.K

    (@wp_dummy)

    Well, you can customize it by using hooks.

    eg:

    add_filter('uwpqsf_taxonomy_arg', 'exclude_to_include','',3);
    function exclude_to_include($args,$taxname,$formid){
       $args['include'] = $args['exclude'];
       $args['exclude'] = array();
       return $args;
    }

    Note that this will display only the included terms in the form. You CANNOT use the ‘exclude from search’ option if you want to use the script above.

    Thread Starter sd1

    (@sd1)

    Thank you for your quick response. It is very much appreciated.

    What I have decided to do instead is to create some custom taxonomies (using plugin ‘WCK – Custom Fields and Custom Post Types Creator’). Then I can select the newly created custom taxonomies in the UWQSF form editor. I think this is a perhaps a faster way for me to work in my situation.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Include Search Terms (not only exclude)’ is closed to new replies.