Can you suggest how to not display the search filter bar in the listing category views/pages... it's part of the child theme I think but can't see how to manipulate this. Thanks
Hello Vivian,
See if this does the job:
. .btn-group:first-child { display: none; }
Vivian
May 8, 2019 at 11:51 pm
Thanks it does!
Is it possible to improve the keyword search as currently it’s not including tags or any other meta data other than the title and description it seems … not ideal…
Vivian
May 8, 2019 at 11:52 pm
Also… the sort by bar is still showing in the search results page too – I need it gone everywhere please. Thanks
JamesD
May 9, 2019 at 12:08 am
@Vivian
Is it possible to improve the keyword search as currently it’s not including tags or any other meta data other than the title and description it seems…
It is, however, not without some sort of customization/coding.
Also… the sort by bar is still showing in the search results page too – I need it gone everywhere please.
Well, if that’s the case then try just using .btn-group:first-child { display: none; }
Was trying to pinpoint a little more since I have no clue how many other pages/items it can impact.
Note: Multiple style references will be needed if you find this producing unexpected results (hiding an area that shouldn’t be hid).
JamesD
Hello Vivian,
See if this does the job:
. .btn-group:first-child { display: none; }
Vivian
Thanks it does!
Is it possible to improve the keyword search as currently it’s not including tags or any other meta data other than the title and description it seems … not ideal…
Vivian
Also… the sort by bar is still showing in the search results page too – I need it gone everywhere please. Thanks
JamesD
@Vivian
Is it possible to improve the keyword search as currently it’s not including tags or any other meta data other than the title and description it seems…
It is, however, not without some sort of customization/coding.
Also… the sort by bar is still showing in the search results page too – I need it gone everywhere please.
Well, if that’s the case then try just using .btn-group:first-child { display: none; }
Was trying to pinpoint a little more since I have no clue how many other pages/items it can impact.
Note: Multiple style references will be needed if you find this producing unexpected results (hiding an area that shouldn’t be hid).
Vivian
Great that worked thanks much
JamesD
@Vivian
You’re welcome.