Andrew Norcross
Forum Replies Created
-
Forum: Plugins
In reply to: [SFN Easy FAQ Manager] [Plugin: FAQ Manager] collapse and expand not working?I had a typo in the code that was looking in the wrong folder for the JS files and icons. Just pushed out an update to fix. Please let me know if this resolves the issue.
Forum: Plugins
In reply to: [SFN Easy FAQ Manager] [Plugin: FAQ Manager] Admin icon missingI had a typo in the code that was looking in the wrong folder for the JS files and icons. Just pushed out an update to fix.
the sort page permissions will be updated to match the same level as the rest of the pages. As for seeing them available, they’re currently set to be administrators. I will look at adding a filter to change this.
@poshdaisy the number of items doesn’t change that. can you open a new thread along with a URL of the page with the shortcode so I can look?
Do you have Genesis (or a child theme) activated at the time you activate the plugin? I tested this on a handful of scenarios and was not able to reproduce.
Forum: Plugins
In reply to: [SFN Easy FAQ Manager] [Plugin: FAQ Manager] SEOGlad you enjoyed it! While I’m not an SEO, I try to stay out of their way and not interfere with plugins that do that.
I just tested your link and the two FAQs appear and expand / collapse as intended.
Forum: Plugins
In reply to: [SFN Easy FAQ Manager] [Plugin: FAQ Manager] Struggling with sortingthis should be updated with the 1.2 update I put out. the only place where it WON’T be in the order is on the post table list (will be in a future update)
Just pushed out a big update today that should take care of that (sorry, kids + wedding + new gig got in the way)
this is usually due to some whitespace or other minor bug in someone’s code. the plugin is about due for a cleanup anyways, so I’ll take a look.
Forum: Plugins
In reply to: [Genesis Design Palette] [Plugin: Genesis Design Palette] BackgroundsI’ll add that to the list of enhancements.
Forum: Fixing WordPress
In reply to: Inserting a Shortcode into conditional with Custom Fieldtry wrapping it in wpautop
In the
genesis-palettefolder, go to thecssfolder and it’s in there.Forum: Fixing WordPress
In reply to: Conditional Statement (Advanced Custom Fields)Without seeing the rest of the code, I’d say that since it’s a repeating field, it’s probably being stored in an array and thus has to be broken out with a foreach.
Forum: Fixing WordPress
In reply to: Conditional Statement (Advanced Custom Fields)While I’ve never heard of the plugin before now, their documentation is pretty straight forward. Give this a shot:
<?php $lists = get_field('lists'); $spcl = get_sub_field('spcl'); if( ($lists) && ($spcl) ) { echo '<p>POOP!</p>'; } ?>