If your website won't load after updating to BuddyPress 12.1.1 it is likely a conflict with bbPress or another BuddyPress compatible plugin. Install the BP Classic plugin to fix this issue.

Okay
  Print

How do I remove specific entries from activity stream? If you want to exclude certain activity entries from your activity stream add the following to your child theme's functions.php file: function ghostpool_activity_dont_save( $activity_object ) { $exclude = array( ...

How do I change the page the login form redirects to? In your child theme's functions.php file add: function gp_login_redirect( $gp_redirect ) { $gp_redirect_link = ''; $gp_redirect = 'window.location.replace("' . $gp_redirect_link . '");'; return $ ...

How do I add a custom captcha to the pop login and register forms? In your child theme's functions.php add the following: function ghostpool_custom_captcha() {          /* Validation code goes here */ return $captcha; } function ghostpool_custom_captcha_display() { ...

My plugins are automatically inserting content into my sidebar and footer? This is happening because you have enabled Visual Composer support via the Visual Sidebars Editor plugin, which allows you to insert Visual Composer elements in your sidebar and footer areas. If you don't need to display Vis ...

My site is running slow, what can I do? Before blaming the theme there are a number of things that may be causing your site to slow down.  First ask yourself, does this issue occur when you are using any other theme? If it does, then it's probably a server or plu ...

How do I add a BuddyPress cover image? Go to Settings > BuddyPress, click the Options tab and make sure Allow registered members to upload cover images is checked. Now go to your BuddyPress profile page, by clicking your username anywhere on the site and cli ...

I can't save the Theme Options page? This error occurs because your server limits the amount of data that can be saved at one time. There are two ways to increase this limit: 1) Edit your php.ini file and increase the max_input_vars function to around 3000 e.g. ...

How do I insert advertisements on my site? To insert advertisements in the header and footer go to the Theme Options page of your theme and locate the header and footer content options (not available on all themes). To insert advertisements in your sidebar go to Ap ...

I cannot see the icons on my site? This is probably because of a permission issues with the font used to display the icons. Using an FTP client set lib/fonts/ and lib/fonts/fontawesome/ permissions to 755 and the font file permissions to 644.

I cannot see my posts when I order by views? This is because the meta keys for each post aren’t added until the view count updates. To do this, open functions.php and find: $accuracy = 50; Replace with: $accuracy = 100; Now when each post is viewed by you ...

CDN images are not working on my site? The theme uses the Aqua Resizer script to resize/crop images to the selected size, this script only accepts images hosted on the same server as the site so CDN images will not work. In order to support CDN images you will ne ...

How do I remove category links from showing up? Cuckoo, Socialize and Habitat Themes:Go to Theme Options -> Posts -> Post Categories and add the categories you want to remove to the Exclude Categories box.Huber Theme:Go to Theme Options -> General and add the categories y ...

I cannot see any related posts? Related posts are only displayed if posts have one or more of the same post tags as the post you are viewing. To add post tags to posts, on the right-hand side of the post add your tags from the "Tags" panel.

Why do I not see the featured images on my site? 1) Make sure you have selected a featured image for each post/page/slide. 2) Make sure you have not set the image width to 0 or left it empty on the Theme Options pages, Also make sure you've not set it to 0 (it can be left ...

I cannot access the drop down menu links on Android devices? By default Android will redirect to the top level menu item link URL as soon as it is tapped. To display a submenu, users must tap, and without lifting their finger slide off of the menu item.

How do I create BuddyPress groups? I'm not sure why I get this question so often as creating groups has nothing to do with the theme, it's part of the BuddyPress plugin. However since I'm always asked please check the following: 1) Go to Settings > BuddyPress ...

How do I show the back to top button on mobile/tablet devices? Go to Theme Options > Styling and in the CSS Code box add : @media only screen and (max-width: 1023px) {     .gp-theme #gp-to-top { display: block !important; opacity: 0.7 !important;     } }

I can't see the BuddyPress/bbPress pages? 1) Please ensure you have installed and activated the BuddyPress and bbPress plugins. 2) Go to Settings -> BuddyPress and click the Components tabs and enable "User Groups" and any other features you want to use. 3) ...

How do users add avatars (images) to their profiles? WordPress uses Gravatar to add avatars (user images). Register a free account at http://gravatar.com, associate it with the email you're using on your WordPress site and upload your avatar image. Now go back to your site and ...

How do I add a Favicon to my site? This is controlled by WordPress, not the theme. Go to Appearance > Customize > Site Identity > Site Icon.

How do I add/remove widgets and Visual Composer elements to the sidebar? 1) If you don't want to display Visual Composer elements in your sidebar go to Appearance > Sidebars Editor select the desired sidebars and click the green "Override widgets" button so it turns grey. This is essential if you' ...

I can't login after clicking my BuddyPress email activation link? The issue is the page URL contains the activation link which does not work with the popup modal login window. To fix this use the BP Autologin on Activation plugin which automatically logs the user in after clicking the email ...

How do I enable comments on pages? Go to Settings -> Discussion and make sure Allow people to post comments on new article is checked. Now on any page click the Screen Options button in the top right corner of the page and check the Discussion option. ...

How can I order posts by views daily, weekly or monthly? In your child theme's functions.php add: function ghostpool_wpp_postviews( $post_id ) {     // Accuracy: // 10 = 1 in 10 visits will update view count. (Recommended for high traffic sites.) // 30 ...

I can't login because it says "Incorrect Captcha"? This is because you have activated the Google Captcha plugin but not set it up. If you don't want to use a captcha on the login form, go to Plugins > Installed Plugins and deactivated the Google Captcha plugin.  If you do ...