-
AuthorSearch Results
-
January 15, 2021 at 12:05 pm #272875
TrevorParticipantOur loader icon is a simple addition to the page, so you may need to use some Custom CSS, or actually hide it entirely and make your own. Please see these two posts (from the same thread);
This third party blog post might also give you some ideas:
https://wpbeaches.com/adding-a-loading-icon-spinner-on-search-filter-pro-archive-page/
January 11, 2021 at 4:52 pm #272388In reply to: I hope for help.
TrevorParticipantYou would need to apply custom CSS to the form to suit your precise needs. There are many CSS snippets on our forum:
https://support.searchandfilter.com/forums/search/data+form+sf+id+searchandfilter
I do sometimes provide these, if I have the available time (but I am rather busy at the moment, sorry).
For example, to find snippets for the search field, which has the class name
sf-field-search
, this search should give you posts that style that field:https://support.searchandfilter.com/forums/search/data+form+sf+id+searchandfilter+sf-field-search/
Rounder corners are set with the CSS border-radius attribute.
December 21, 2020 at 9:31 am #270449In reply to: How to Format Size of Drop Down Menu Filters
TrevorParticipantYou would need custom CSS, like this:
.searchandfilter[data-sf-form-id="218"] .sf-field-search input, .sf-field-search label { display: block; width: 100%; } .searchandfilter[data-sf-form-id="218"] > ul { margin: 0 7px 0 10px; } .searchandfilter[data-sf-form-id="218"] li[data-sf-field-input-type="select"] select, .searchandfilter[data-sf-form-id="218"] li[data-sf-field-input-type="select"] label { width: 100%; }
December 16, 2020 at 3:21 pm #269993In reply to: Filter & Elementor not working
TrevorParticipant3) Would require there to be a custom field where it indicates if a product has a sale price. I am not sure WooCommerce has such a field. It has the actual Sale Price, but that is not the same thing. It could, I suppose be done with a range field set as a radio button (where the options could be All Items and Sale Items), with some modifications, but only as long as the Sale Price is not being used as a filter elsewhere in the form.
4) That would require custom CSS, but you would need to explore that yourself, as it is not something that would be within the scope of our support, sorry. There are some snippets on our forum:
https://support.searchandfilter.com/forums/search/data+form+sf+id+searchandfilter
I do sometimes provide these, if I have the available time (which I do not at this time, sorry) and publish them for others to see.
5) As above, that can most likely be done, with custom CSS.
6) It should work, but some other JavaScript may be interfering. Looking at that screenshot, the Ajax Container is probably wrong for WooCommerce, which usually has.products
for its Ajax Container.December 16, 2020 at 9:19 am #269938In reply to: tags field stretched
AnonymousInactiveadd this to your custom css
.searchandfilter select.sf-input-select {
max-width: 170px;
}December 16, 2020 at 9:17 am #269937In reply to: Search form not working
AnonymousInactiveFor horizontal display: Add this to your custom css:
.searchandfilter ul li {
display: inline !important;
}December 10, 2020 at 2:51 pm #269420In reply to: Sort order doesn’t work
TrevorParticipantTry this custom CSS:
.searchandfilter[data-sf-form-id="3664"] .sf-field-search input, .sf-field-search label { display: block; width: 100%; } .searchandfilter[data-sf-form-id="3664"] ul { padding-left: 0; } .searchandfilter[data-sf-form-id="3664"] li[data-sf-field-input-type="select"] select, .searchandfilter[data-sf-form-id="3664"] li[data-sf-field-input-type="select"] label { width: 100%; } .searchandfilter[data-sf-form-id="3664"] .meta-slider { max-width: calc(100% - 21px); margin-left: 5px; }
December 4, 2020 at 4:09 pm #268849In reply to: Need form to wrap inside a column
TrevorParticipantYou have some custom CSS there, using Flexbox, so you should utilise that thus:
.searchandfilter[data-sf-form-id="2509"] > ul { flex-wrap: wrap; }
December 3, 2020 at 1:49 pm #268651In reply to: color font & buttons
TrevorParticipantCustom CSS like this:
.searchandfilter[data-sf-form-id="2169"] .sf-field-submit input { border-radius: 5px; color: #282828; background: #78c8ce; }
December 3, 2020 at 11:03 am #268610In reply to: Displaying filter options horizontally
TrevorParticipantYou would need to create your own CSS for the form, using CSS media queries to make the CSS responsive. For example, you can wrap your CSS for the desktop display (horizontal) so it does not affect the mobile view, but you need to discover the responsive breakpoint of your theme (change the 992px to suit). For example, like this:
@media (min-width: 992px) { .searchandfilter[data-sf-form-id="1234"] { display: inline-block; vertical-align: top; padding: 0 20px; } }
Where 1234 needs to be changed to match your form ID.
For more custom CSS examples, there are many snippets in the forum:
https://support.searchandfilter.com/forums/search/data+form+sf+id+searchandfilter
-
AuthorSearch Results