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 open the affiliate button link in a new window?

In your child theme's functions.php file add:

function ghostpool_affiliate_link_target() {
    return '_blank';
}
add_filter( 'gp_affiliate_link_target', 'ghostpool_affiliate_link_target' );