Skip to main content

Home/ buddypress/ Group items tagged howto

Rss Feed Group items tagged

Vernon Fowler

Embeds « WordPress Codex - 0 views

  • SoundCloud (WordPress 3.5+)
    • Vernon Fowler
       
      Recordings must be set as public and share via the short URL in order to work in bbPress / BuddyPress 1.7.
Vernon Fowler

WordPress › Support » [Plugin: Private BuddyPress] Only exclude SOME pages (h... - 0 views

  • Simply modify the example code from the plugin FAQs in order to unblock a page by its ID number: // unblock a page by id function make_page_visible($visibility) { global $bp; if (is_page(26)) return false; return $visibility; } add_filter('pbp_login_required_check', 'make_page_visible');
    • Vernon Fowler
       
      This works by page ID as well as the array option including slug and Page Title - see highlight below.
  • is_page(array(42,'about-me','Contact'))
    • Vernon Fowler
       
      Works in combination with the above highlight in a theme's functions.php file.
  •  
    Only exclude SOME pages (how-to)
1 - 2 of 2
Showing 20 items per page