I am trying to add a "donation" button that will take donors to an external form. I am copying the code directly from my merchant account with authorize.net. My html code is showing a broken link after I click on the donate button. Please help!
Here is what I am pasting.
<form name="PrePage" method = "post" action = "https://Simplecheckout.authorize.net/payment/CatalogPayment.aspx"> <input type = "hidden" name = "LinkId" value ="redacted for security" /> <input type = "image" src="//content.authorize.net/images/donate-gold.gif" /> </form>
Solved! Go to Solution.
Try adding a target to the form. For the same window use "_top", for a new window use "_blank"...
<form target="_top" name...
If that does not work you can post the URL where the issue is happening for testing.
Try adding a target to the form. For the same window use "_top", for a new window use "_blank"...
<form target="_top" name...
If that does not work you can post the URL where the issue is happening for testing.
Simple solution!
Thank you for replying. It works!
Thank you.
Glad to hear, you're welcome!