- This topic has 1 reply, 2 voices, and was last updated 8 years, 4 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Troubleshooting › eStore: make ClickBank Buy Now button open in new window
Tagged: buy now, buy now button link, clickbank, new window
When visitors click the Clickbank Buy Now button, how do I make the ClickBank checkout page open in a new window?
The buttons are on this page (using custom buttons): [http://www.soothingyoursoul.com/restore-calm-wellbeing/]
Opening the buy button in a new window is not a standard practice.
You can use the following tweak to get it done.
1) Open the following file from the gateway bundle addon:
wp-payment-gateway/wp_pg_misc_functions.php
2) Search for the following line of code in that file:
$output .= '<form action="'.$action_url.'" method="post">';
3) Replace it with the following:
$output .= '<form action="'.$action_url.'" method="post" target="_blank">';
That should do it.