Ross Morsali
Forum Replies Created
-
Forum: Plugins
In reply to: [Forget About Shortcode Buttons] Debug Error on Exit offerring editor pageThanks for this, this will be resolved in the next update (estimated 1 – 2 weeks)
Forum: Plugins
In reply to: [Forget About Shortcode Buttons] Use Shortcode Inside of the ButtonYup should be fine, as these buttons don’t use shortcodes 🙂
Forum: Plugins
In reply to: [Forget About Shortcode Buttons] Small ProblemHey Rik
It sounds like your theme is loading some CSS after FASC buttons, which means some rules are being overwritten.
The best thing to do would be to add the CSS from FASC buttons into your theme stylesheet, so you know they are loaded after your themes CSS, and hopefully the rules will work.
So in your theme where you are supposed to add your custom css, add the rounded rules again, this time with the important option set:
/* rounded */ a.fasc-button.rounded.fasc-size-xlarge, .fasc-rounded-medium.fasc-size-xlarge { border-radius:15px !important; } a.fasc-button.rounded.fasc-size-large, .fasc-rounded-medium.fasc-size-large { border-radius:10px !important; } a.fasc-button.rounded.fasc-size-medium, .fasc-rounded-medium.fasc-size-medium { border-radius:9px !important; } a.fasc-button.rounded.fasc-size-small, .fasc-rounded-medium.fasc-size-small { border-radius:8px !important; } a.fasc-button.rounded.fasc-size-xsmall, .fasc-rounded-medium.fasc-size-xsmall { border-radius:7px !important; }Thanks
Forum: Plugins
In reply to: [Forget About Shortcode Buttons] Change the fontSimilar to my other post but:
.fasc-button { font-family:Arial; }or
.fasc-button { font-family:Arial !important; }Thanks
Forum: Plugins
In reply to: [Forget About Shortcode Buttons] Change size buttonYou can do this via CSS.
Something like:
.fasc-button.fasc-size-xlarge { font-size:60px; padding:20px; }This would modify the CSS for any buttons that are set to Extra Large – see the
.fasc-size-xlargeObviously replace this with the other sizes to target different sizes.
If you are having trouble seeing the changes it might be worth adding important rules just for testing
.fasc-button.fasc-size-xlarge { font-size:60px !important; padding:20px !important; }Thanks
Forum: Plugins
In reply to: [Forget About Shortcode Buttons] Align the buttonJust seen you’ve posted on our site? 😉
I think you can just use the regular WP alignment controls
Thanks
Forum: Plugins
In reply to: [Search & Filter] Chained Taxonomies filterHey there
Chained taxonomies is only available in Pro
http://www.designsandcode.com/wordpress-plugins/search-filter-pro/
Check out the demo:
http://demo.designsandcode.com/sfpro-movie-reviews/search/?_sfm_oscar=0+10
You will see when you change “certificates” the “genres” list gets auto updated
Thanks 🙂
Forum: Plugins
In reply to: [Search & Filter] Code requiredHi there, the movide demo is for our Pro plugin, not free – so the same fields are not all available.
Please see the docs for S&F (regular) for usage instructions:
http://docs.designsandcode.com/search-filter/Thanks
Forum: Plugins
In reply to: [Search & Filter] Doesn't take into account the taxonomies "Post_tag"Ah yes, you cannot use the same fields multiple times.
To create new fields you must create new taxonomies – please see here on how t create new taxonomies for new fields:
Ignore the rest of the docs, they are actually for the pro plugin.
Thanks
Forum: Plugins
In reply to: [Search & Filter] I see only submit buttonThis is strange, it looks like the theme is adding html tags to the shortcode itself, which means it will not work.
What happens when you type out the shortcode from scratch and save? (ie no copy & paste)
Thanks
Forum: Plugins
In reply to: [Search & Filter] Filter in the same page?Hey again
The demo you link is for our Pro plugin – the ajax search is available only in Pro.
Thanks
Forum: Plugins
In reply to: [Search & Filter] Auto Submit?Hi there
This is an option in Search & Filter Pro. However its still possible in free if you can add some JavaScript to your site:
There are a few exammples I’ve seen there – I didn’t link any as I’ve not tested any personally but its definitely possible.
Thanks
Forum: Plugins
In reply to: [Search & Filter] not working on mobileI’m thinking this is a theme issue.
I just tested on my mobile and also doesn’t work. However if I test my own copy, on 2015 theme it works.
Can you test with a default WP theme somewhere?
Thanks
Forum: Plugins
In reply to: [Search & Filter] Doesn't take into account the taxonomies "Post_tag"What happens whenWhat happens when you just do a form with post tag?
[searchandfilter fields="post_tag"]Also, make sure hide empty is off:
[searchandfilter fields="post_tag,submit" hide_empty="0"]See the docs for hide_emtpy:
http://docs.designsandcode.com/search-filter/#optionsThanks
Forum: Plugins
In reply to: [Search & Filter] And… not works for me…Hi there
The and operator, is only WITHIN a field, so this will only work on multiple choice fields, such as checkboxes or multiselects.
IF you need to change the operator BETWEEN fields then this is a feature available in pro.
Thanks