There will be no theme support from 23rd December to January 1st. Support will resume January 2nd.

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' );