Support Forums

Looking for support? You can access the support system via your account.

Forums Forums Search & Filter Pro Default value select

Viewing 6 posts - 1 through 6 (of 6 total)
  • Paul Ksi
    #260428

    Is there ability to change default select value of a filter, instead of all categories, show second option, without queries??

    i only found how to exclude option from a list but it still returns all the posts of the custom post type, i need it to select 2nd option on load and leave url as it is, messing with code on github –
    filter_function_name($input_object, $sfid){
    }

    how to achieve this?
    Thanks.

    Paul Ksi
    #260434

    i`m using unset to delete first two option values but i need it to be default, how to do this?? thanks

    function filter_function_name($input_object, $sfid)
    {
    if($input_object[‘name’]==’_sft_tax_news’)
    {
    /*foreach($input_object[‘options’] as $option)
    {
    if($option->value==”maironio-lietuviu-literaturos-muziejus”)
    {
    $option->label = “AAA”;
    $option->attributes[‘class’] = “sf-option-active”;
    $option->attributes[‘selected’] = “selected”;
    }
    }*/
    unset($input_object[‘options’][0]);
    unset($input_object[‘options’][1]);
    return $input_object;
    //udpate this field before rendering
    }
    else{
    echo “NOOO!”;
    return $input_object;
    }
    }
    add_filter(‘sf_input_object_pre’, ‘filter_function_name’, 10, 2);

    filter_function_name(array(‘name’ => ‘_sft_tax_news’),17402);

    Trevor Moderator
    #260539

    This has been asked before, but I a sorry, there is no way to preselect the default value/term. This is something we plan to add for V3, due in a few months.

    Molly Seaton-Fast
    #276401

    Has this now been added as a feature?

    Trevor Moderator
    #276403

    Not yet, I am sorry.

    Klemens
    #276499

    Hello Trevor,
    is it still not possible to set default values?

Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.