Buy now button works in safari but not I.E.

Cliffy
Contributor
Contributor

Hi all.

 

I set up a button through safari with multi payment options and it works fine when using that browser. When I try to pay (acting as a customer) through I.E. I get an error (error-login-paypal) and am asked to login. 

By saying it works fine in safari, I mean it takes me to PayPal and offers the customer an option to pay by card, this option isn't available through I.E. check it out here >> www.getfizi.com.au/payments/

 

I even tried the target="_blank" in the coding with no luck.

 

Can someone please help me? Is this a website frame issue or something else?

 

Thanks

Cliffy

Login to Me Too
1 REPLY 1

snowshoe
Frequent Advisor
Frequent Advisor

You don't need target="_blank" for Buy Now, works best for Add to Cart and View Cart

 

You had several lines of code not needed, see the updated code below:

 

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="description" content="">
    <meta name="keywords" content="">
    <title></title>
    
</head>
<body>


<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick" />
<input type="hidden" name="hosted_button_id" value="D958EWE44FMNA" />
<table>
<tbody>
<tr>
<td>
<input type="hidden" name="on0" value="Program Prices" />Program Prices</td>
</tr>
<tr>
<td>
<select name="os0">
<option value="SPORT 15 Weeks">SPORT 15 Weeks $95.00 AUD</option>
<option value="SPORT 9 Weeks">SPORT 9 Weeks $57.50 AUD</option>
<option value="SPORT 3 Weeks">SPORT 3 Weeks $20.00 AUD</option>
<option value="DANCE 10 Weeks">DANCE 10 Weeks $50.00 AUD</option>
<option value="DANCE 5 Weeks">DANCE 5 Weeks $30.00 AUD</option>
<option value="DANCE 3 Weeks">DANCE 3 Weeks $20.00 AUD</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="hidden" name="on1" value="Child Name" />Child Name</td>
</tr>
<tr>
<td>
<input type="text" name="os1" maxlength="200" /></td>
</tr>
<tr>
<td>
<input type="hidden" name="on2" value="Childcare Centre Name" />Childcare Centre Name</td>
</tr>
<tr>
<td>
<input type="text" name="os2" maxlength="200" /></td>
</tr>
</tbody>
</table>
<input type="hidden" name="currency_code" value="AUD" />
<input type="image" name="submit" src="https://www.paypalobjects.com/en_AU/i/btn/btn_buynow_SM.gif" alt="PayPal - The safer, easier way to pay online!">
</form>

<!-- Not needed -->
<!-- <form action="https://www.paypal.com/cgi-bin/webscr" method="post"></form> -->
<!-- <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"></form> -->
<!-- <form action="https://www.paypal.com/cgi-bin/webscr" method="post"></form> -->

  </body>
</html>

 

Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.