John Donovan
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Calendar feeds not updating correctlyLike a doof, I updated to the most recent version – after finding that my ics feed was not updating properly. Low and behold, on the Events –> Import Feeds –> Feed Subscriptions page I see the message: “You don’t have a subscription for this feature”.
I don’t begrudge a developer for wanting to monetize his work and am grateful for the WordPress plugin development community … however, this is a pretty crummy way to generate business.
Finding a replacement from a more ethical business – even at a greater cost – seems to be time.ly
Forum: Plugins
In reply to: [Custom Login] Dismiss Notice for "Stealth Login" not workingThanks, Frosty.
Yes, esmi – it is as you describe.
-john
Forum: Plugins
In reply to: [YOP Poll] Answer Select ListThanks – but as noted above, we only want a single answer … so checkboxes won’t work. Ideally, the code would generate a list of <option> elements that we could place in a <select> element in the template.
Thanks.
Forum: Plugins
In reply to: Menu Control by RoleSolved – thanks to a genius clue from Thom Meridith.
It was simply a matter of defining a new menu (“public” and “members”), then modifying the header.php for my theme to include:
<?php if ( is_user_logged_in() ) { wp_nav_menu ( array ('menu' => 'members' ) ); } else { wp_nav_menu ( array ('menu' => 'public') ); }
Of course, this can be expanded to test other conditions as-well ( current_user_can(), etc) and load the appropriate menu.
This, combined with the ability to manage content access using one of the permissions control systems (Members, Role Scoper, etc) will provide the functionality we’re looking for.
-john