Ross Morsali
Forum Replies Created
-
Forum: Plugins
In reply to: [Search & Filter] Plugin internationalization and spanish translationMany thanks! I’ve downloaded it and will try to review as soon as possible.
Thanks
Forum: Plugins
In reply to: [Search & Filter] translate post type filterHey there, S&F gets the post types from WordPress:
$post_types_objs = get_post_types( $args, $output, $operator ); $post_types = array(); foreach ( $post_types_objs as $post_type ) { if($post_type->name!="attachment") { $tempobject = array(); $tempobject['id'] = $post_type->name; $tempobject['name'] = $post_type->labels->name; $objchildren[] = (object)$tempobject; $post_types[] = $post_type->name; } }WPML should be translating these before S&F gets them. I haven’t had anyone else mention this before either so thinking there could be a configuration issue in your setup?
Thanks
Forum: Plugins
In reply to: [Search & Filter] Conditional Logic for Displaying Form on Results PageHey there looks like you are on S&F Pro – can you open a ticket on the pro support forums?
https://www.designsandcode.com/forums/forum/search-filter-pro/support/
Thanks
Forum: Plugins
In reply to: [Search & Filter] Exclude single categories of a radio button filterHey there, I’m afraid excluding categories is a pro feature, but you can achieve it using a WP filter:
You will have to combine the example “Exclude categories on your main page” and “Exclude Pages from Search Results”
Thanks
Forum: Plugins
In reply to: [Search & Filter] Filter All Not WorkingHey there, the value of all being
0just means that S&F will ignore it completely from the query.I’m guessing then when you select all (ie nothing), S&F will probably redirect to your default search page. Technically, if no filters have been selected, S&F will not be doing anything to the results on that page at all – however your search page was working in your them already is how it will display.
(some themes add filters etc to the search page to search in certain post types – look for
pre_get_posts,get_search_termandis_searchin your theme files for the likely culrpits)Thanks
Forum: Plugins
In reply to: [Search & Filter] Date Range Free VersionHey there
S&F free uses the html5 input type of date, unfortunately, even 3 years ago when we added this to S&F, some browsers do not yet support it properly (its been in the spec for ages).
S&F pro though does not use the html5 date field, it uses the jQuery date picker so should work in all setups.
Thanks
Forum: Plugins
In reply to: [Search & Filter] A Little Confused…Hey Steve
You’re right, with the free version you have to use a shortcode to build your search form.
In Pro you get a drag & drop builder (and there are quite a lot of under the hood changes).
There is quite a disparity between free & pro.
I’ll try to explain a little – Free was around long before pro and was a pet project.
Later on I decided to do a pro version with a drag & drop ui – this meant actually rewriting the whole project from scratch (there are only a few lines of code left in from the original plugin).
Due to this rewrite, I’ve had to manage two different codebases of the two plugins – which as it turns out is quite a strain – and, due to the popularity of pro, I’ve been bogged down with handling support requests and updates etc.
At last I’m now in a position we’ve got additional support for S&F pro, and now work has begun on unifying the two projects – users’ of free will see a bunch of pro features added to the plugin 🙂
This is also quite a lot of work though and does take time.
Thanks
Forum: Plugins
In reply to: [Search & Filter] Order by idI’m not sure what you mean, order by tag?
Have you checked the options available for the order by field?
http://docs.designsandcode.com/search-filter/#options
The order_by field allows you to change the order of the options IN THE FIELD, not on the RESULTS..
Thanks
Forum: Plugins
In reply to: [Search & Filter] Can it do conditonal logic?Ah sorry not yet, its coming 🙂
Forum: Plugins
In reply to: [Search & Filter] Order by idThis is not available in S&F free I’m afraid – it is available in Pro though.
Check the available options to see what you can achieve with free:
http://docs.designsandcode.com/search-filter/#options
Thanks
Forum: Plugins
In reply to: [Search & Filter] Custom Post Type search shows all typesAh I missed your point – so in this case something is likely modifying the query and also changing the post type of searches (something outside of S&F) – try the usual – disabling plugins / switching themes..
It would be near impossible to guess where the issue is – but any query in WP can be modified easily with the filter
pre_get_posts– so its not possible to prevent other plugins, themes, custom code from affecting search results – we just have to hope that people are using these filters correctly.Thanks
Forum: Plugins
In reply to: [Search & Filter] Custom taxonomies on pages not workingThanks for all the updates!
Forum: Plugins
In reply to: [Search & Filter] Embedding Search in the headI’m not too familiar with Divi, but I’m sure in the theme they will have a
header.php– you can add the shortcode in here for your search form.See usage in theme files:
http://docs.designsandcode.com/search-filter/#how-to-use
Thanks
Forum: Plugins
In reply to: [Search & Filter] Custom Post Type search shows all typesHave you checked the post types option?
http://docs.designsandcode.com/search-filter/#options
Thanks
Forum: Plugins
In reply to: [Search & Filter] How to add class to fields?I’m afraid thats not possible in this version.
If you inspect the dom, you will see every field has a specific class –
.ofcategoryfor example which should allow you to modify the CSS.Thanks