ewire
Forum Replies Created
-
Forum: Plugins
In reply to: [Glossary] Shortcode/PHP for alphabetical letters?we have the pro version, but I don’t see an option to have JUST the letters (not the terms) — [glossary-list] gives me the list of terms under the letters. (I’m looking to put a list of available letters at the bottom of my single glossary term pages.)
Forum: Plugins
In reply to: [Glossary] Turn off Glossary links on certain pagesThat’s perfect, and exactly what I was looking for! Thanks for helping me find it. (If anyone is searching for this feature, it’s the “Disable Glossary for this post” switch in the Glossary Post Override section of a page/post.)
Forum: Plugins
In reply to: [Glossary] Turn off Glossary links on certain pagesBut that’s for the entire post type. I’d like to keep the glossary terms active for (for example) all Pages except for certain specific pages. Is that possible, or is it all-or-nothing for post types?
Forum: Plugins
In reply to: [Glossary] Alphabetical list not appearing under title on main Glossary pageI think I figured it out? The alphabetical list doesn’t appear on the auto-generated glossary archive page, but it works with the shortcode.
Thanks for your quick reply! Even with everything updating it was causing the problem. However, I was able to determine that Intuitive Custom Post Order plugin was the issue: when I disabled that plugin, the Advanced SEO settings stuck.
Forum: Plugins
In reply to: [Constant Contact for WordPress] short code not workingNever mind — I needed to activate the Constant Contact Form Designer plugin and set that up. The form is appearing now…
Forum: Plugins
In reply to: [Constant Contact for WordPress] short code not workingMy issue is that the shortcode isn’t generating anything. I’ve tried this in the WP page admin:
[constantcontactapi formid="0" lists="40"]…and this in the template file:
<?php echo do_shortcode( '[constantcontactapi formid="0" lists="40"]' ); ?>Both result in nothing showing up on the page. The sidebar widget works fine, which makes me think I have everything set up correctly. Did I miss something else?
Forum: Plugins
In reply to: [Events] Make title a link. Use the field below.You need to include a URL in the “Link to page (optional): ” field for the “Make title a link” checkbox to work.
Forum: Plugins
In reply to: [Press, News, Events] Display event location & dateThis seems to have worked:
$meta = get_post_custom($post->ID); extract(array( 'location' => $meta['_location'][0], 'starts' => $meta['_starts'][0], 'ends' => $meta['_ends'][0], 'all_day' => $meta['_all_day'][0], )); if ($starts) echo Press_News_Events::pretty_date_range($starts, $ends, $all_day);