Firstly, thank you so much to Waqar for helping me so far. I didn't respond to the last two tickets in time and they are now marked resolved but his advice worked on my site just how I needed.
I have a new question, is it possible to set up the search function on the custom post archive page so that multiple options can be selected using the dropdown control type? I have done it with radio buttons control type but it would look better if it was drop down.
Also, I have html text link that triggers additional search fields to display on click (thank you Waqar). Is there a way to style this so that it looks like a button?
thank you!
Lisa
Hi Lisa,
Glad I could help and I'll be happy to follow up on this new ticket.
> I have a new question, is it possible to set up the search function on the custom post archive page so that multiple options can be selected using the dropdown control type? I have done it with radio buttons control type but it would look better if it was drop down.
- I'm afraid, it is not possible to select multiple options, when the dropdown/select type search field is being used.
The selection of multiple options is only supported when using either the "Set of checkboxes" or the "Select multiple" options.
> Also, I have html text link that triggers additional search fields to display on click (thank you Waqar). Is there a way to style this so that it looks like a button?
- To make the text links for the triggers to appear as buttons, you can replace the HTML code for the links:
( ref: https://toolset.com/forums/topic/split-showing-option-to-show-extra-search-fields/ )
<a href="#" id="additional-fields-container-link-show">Show Additional fields</a>
<a href="#" id="additional-fields-container-link-hide">Hide Additional fields</a>
With:
<button type="button" id="additional-fields-container-link-show">Show Additional fields</button>
<button type="button" id="additional-fields-container-link-hide">Hide Additional fields</button>
regards,
Waqar