Dr. J
Aug 12 2004, 03:04 PM
I installed Paypal IPN v. 2.6 in the last couple of days. A couple of weeks ago, I installed the Updated Paypal Payment Screen, which shows the credit card logos. After intalling IPN, the Paypal option appears twice on my the payment selector screen. I have a Check or Money Order, Paypal option, and then the Paypal option (without a button to click) again.
Can anyone help me get rid of the duplicate Paypal option?
Dr. J
Oct 27 2004, 11:31 PM
Does anyone know how to help me? It looks kind of silly to have the PayPal option there twice. I am afraid it is driving customers away.
Dr. J
Nov 22 2004, 04:09 AM
Please help me.
Here is a screenshot of what is happening
http://www.creightonmedical.org/Screenshot-Paypal.JPGWe are starting a new sale and I want to get this fixed. I really need help!
Sauron
Dec 9 2004, 03:54 PM
This should delete one of the paypal options.. Let me know if it helps.
Edit your /catalog/checkout_payment.php file as follows:
Find this
-----------------
<td class="main" colspan="3" nowrap><?php
if ($selection[$i]['module'] == 'PayPal') {
?>
<big><b>
Credit Card
<img src="catalog/images/logo_ccVisa.gif" border="0" title=" Visa " alt="Visa" align="bottom">
<img src="catalog/images/logo_ccMC.gif" border="0" title=" MasterCard " alt="MasterCard" align="bottom">
<img src="catalog/images/logo_ccDiscover.gif" border="0" title=" Discover " alt="Discover" align="bottom">
<img src="catalog/images/logo_ccAmex.gif" border="0" title=" American Express " alt="American Express"align="bottom">
or
<img src="catalog/images/banner_intl.gif" border="0" title=" PayPal " alt="PayPal" align="bottom">
</b></big>
<br>
You do not need to be a PayPal member to pay by credit card.
<script>
document.writeln('<a style="cursor:hand" onclick="java script:popup=window.open('
+ '\'http://(your domain here)/catalog/CreditCardExplain.html\',\'popup\','
+ '\'scrollbars,resizable,width=500,height=600,left=50,top=50\'); popup.focus(); return false;">'
+ '<font color="blue"><u>[info]</u></font></a>');
</script><noscript>
<a href="CreditCardExplain.html" target="_blank"><font color="blue"><u>[info]</u></font></a>
</noscript>
<?php
} else if ($selection[$i]['module'] == 'Check/Money Order') {
?><big><b>Check or Money Order </b></big>
<img src="/check.gif" border=0 alt=" Send Us a Check " align="absmiddle">
<?php
} else {
echo '<big><b>' . $selection[$i]['module'] . '</b></big>';
}
?></td>
Replace with
-----------------
<td class="main" colspan="3"><b><?php echo $selection[$i]['module']; ?></b></td>