Removing page title from My Profile BuddyPages

When creating a BuddyPages page that get set to display on “My Profile”, there will be a page title at the top of the content area. However, this may not be desirable for what you are aiming for. If you wish to remove the display of the title completely, the following snippet will help. You…

Read More

Including hidden BuddyPress groups in dropdown

Out of box, BuddyPages only includes public groups for consideration when where to assign a given page. The code below will allow for including hidden groups as part of that query. function pluginizehelp_include_hidden_groups( $args ) { $args[‘show_hidden’] = true; return $args; } add_filter( ‘buddypages_groups_get_is_admin’, ‘pluginizehelp_include_hidden_groups’ );

Read More

Adding BuddyPages

BuddyPages are added on the front of the site. Site admins can view all BuddyPages from the admin from the top level “BuddyPages” menu item. A site member can get to the BuddyPage creation/editing by visiting the “Pages” menu under user settings on their profile.  Click “Add New” to add a new page.  Enter a…

Read More

Editing BuddyPages

Editing BuddyPages can be done by clicking edit link above a BuddyPage you are viewing or from the Settings -> Pages list.  Any BuddyPage title in the user navigation with a “Pencil” icon is set to draft status. Draft pages only display  to the author of the page.  Note: only an author of a BuddyPage…

Read More

Deleting BuddyPages

BuddyPages are deleted from the edit page screen. Click “Edit” when viewing a BuddyPage. On the lower right you will find a delete link.  Site Admins can edit and delete BuddyPages from the BuddyPages admin menu item. Note: this completely removes the content from the site. if you want to keep a page but not…

Read More

BuddyPages Settings

By default only admins can create BuddyPages. To turn on page creation for all user visit the BuddyPress options page in the Settings menu. Settings -> BuddyPress then click the options tab and find the BuddyPages options section. Click the checkbox Member Pages and save to allow all users to create BuddyPages. BuddyBoss To access…

Read More

Modifying the BuddyPages editor

How to modify the wp_editor instance for BuddyPages. You will need to be familiar with how WordPress filters work. Default values /** * Filters wp_editor args for BuddyPages content editor. * * @since 1.0.0 * * @param array $attributes wp_editor arguments. */ $editor_args = apply_filters( ‘buddypages_textarea_editor_args’, array( ‘teeny’ => true, ‘media_buttons’ => false, ‘quicktags’ =>…

Read More