Ross Morsali
Forum Replies Created
-
Forum: Plugins
In reply to: [Search & Filter] Your thoughts please!Hey khurramgd
Please start your own topic for support requests. I will help there.
Thanks
Forum: Plugins
In reply to: [Forget About Shortcode Buttons] Do you think about adding some more?Hey ckubs, yeah I do plan on adding more actually 😉 But there are some limitations I’ve been thinking to get over.
The last few months I’ve spent preparing and releasing another plugin but that is looking like its stable now so I’m just about ready to get back on here and improve this one.
However, if I am to add more features it can’t be called FASC Buttons – because it won’t be just buttons haha!
If you want to leave your details here I’ll be sure to keep you in the loop of any updates 🙂 http://www.designsandcode.com/contact/
Forum: Plugins
In reply to: [Search & Filter] Two select fields for date: year and month.Hey marianny, the free version doesn’t have Ajax… :/
And unfortunately it is not possible to display dates like you mention, however the pro version uses a jquery date picker so users can pick any dates they want.
Thanks!
Forum: Plugins
In reply to: [Search & Filter] Custom TaxonomyNo problem 🙂
Forum: Plugins
In reply to: [Search & Filter] Custom TaxonomyI’m not sure exactly whats wrong but you should not have spaces in your shortcode after any commas, especially for the fields list:
[searchandfilter fields="download_category,download_tag,download_price_range" submit_label="Search for Gifts" headings=" FitGIFT Type, Location in Sydney, Price Range"]Does that work?
Forum: Plugins
In reply to: [Forget About Shortcode Buttons] Using WP_colorpickerHey N2Clic
Thanks for the kind words..
Yeah I know what you mean, however the popup window does not actually load any of WP or the core – it runs effectively like an iframe…
Also the color picker I chose is very popular and actively updated (http://labs.abeautifulsite.net/jquery-minicolors/) however I do like things to look as native as possible in the WP dashboard so may switch over to that one later 🙂
Let me know if there are any suggestions/feature requests as I’m about to start updating this plugin again 🙂
Hey JochenKnochen, this plugin does what you need! Just choose checkbox as a field type, and operators as OR!
Thanks
Hey JochenKnochen
I just realised this is the intended behaviour and is not a bug…
Basically, you have a post
Justanotheroneand it has categorysuperduperand taghorse…So a search for
superduperwill return postjustanotheroneand a search for taghorsewill return postjustanotheroneA search for both
superduperandhorsewill return just another one, BUT, a search forsuperduperandcatwill return no results, because there are no posts with both of these.This is because BETWEEN taxonomies (or category or tag) the operator is always AND… I think you are misunderstanding the operator parameter you are using in your shortcode – this operator is for each field.
So if you had your category displayed as checkboxes, and you selected both
superduperandawesomeyou can choose if the operator is AND or OR…Does that make sense?
Thanks
Hey JochenKnochen
That seems odd, do you have a link I could look at?
It seems that maybe some custom code (possible a
pre_get_postshook) or another plugin may be modifying your results?Thanks
Forum: Plugins
In reply to: [Search & Filter] How to change the input name?Hey Stefan, the name really shouldn’t matter and I’m not sure what you are trying to achieve, but I’ve never seen selecting like that… I guess what you want to do is something like:
$('input[name="ofpost_tag[]"]').on("change",function(){ //do stuff on change });Forum: Plugins
In reply to: [Search & Filter] Multiple selected checkboxes issueHey miuiux,
I would start by getting rid of the post types argument, you are supposed to add the post types you wish to search, so this may be
post,pageor any custom post type you have created…So use your form like:
<?php echo do_shortcode( '[searchandfilter fields="supplier-type,ni-county" types="checkbox,checkbox" headings="Categories,Counties" submit_label="Filter" operators="or,or" add_search_param="1"]' ); ?>See if that helps? However I do not think this is the real cause of your problem :/
Thanks
Forum: Plugins
In reply to: [Search & Filter] link->"back on search page"Hey svegliadesign
This is not possible I’m afraid, unless you want to do with JavaScript?
<a href="javascript:history.back()">But this can be messy so you have to make sure a user came from the search page before you display….
I plan to add in a feature in the pro version I have, where the form will keep all the defaults even when clicking through to another page – which would also make this task easy… but I have’t even begun that yet!
Thanks
Forum: Plugins
In reply to: [Search & Filter] Search posts not pagesHey IndigoDaisies
Sure, just check the options:
http://docs.designsandcode.com/search-filter/#optionsUse it like:
[searchandfilter fields="search,category" post_types="post,page"]Thanks
Forum: Plugins
In reply to: [Search & Filter] Multiple selected checkboxes issueHey miuiux
Just wondering, do you have a post type called “post_type”? Not sure if thats setup right to start?
Not sure why your searches are only the first category selected, do you have a link I could check out?
Thanks
Forum: Plugins
In reply to: [Search & Filter] Super Basic CSS QuestionsHey sampaven88
The code above works to make it horizontal IF the container of search & filter is wide enough.. so figure out what element S&F is contained in an make sure it is wide enough for the elements…
Also you might have some styling on the
formelement so try to give that a width or set it to auto:.searchandfilter { width:500px; }Thanks