Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Like 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

    Thread Starter John Donovan

    (@johndonovan)

    Thanks, Frosty.

    Yes, esmi – it is as you describe.

    -john

    Thread Starter John Donovan

    (@johndonovan)

    Thanks – 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 Role
    Thread Starter John Donovan

    (@johndonovan)

    Solved – 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

Viewing 4 replies - 1 through 4 (of 4 total)