diane22:
2) Remove Paypal button leaving only checkout at the end check out payment will leave you only Paypal option.
How do I do this? I'm not using google.
this is what i did, may not be the recomended way, but it seems to work
copy tpl_shopping_cart_default.php to /public_html/includes/templates/your_template/templates/
edit and remove lines 159-165
<!-- ** BEGIN PAYPAL EXPRESS CHECKOUT ** -->
<?php // the tpl_ec_button template only displays EC option if cart contents >0 and value >0
if (defined('MODULE_PAYMENT_PAYPALWPP_STATUS') && MODULE_PAYMENT_PAYPALWPP_STATUS == 'True') {
include(DIR_FS_CATALOG . DIR_WS_MODULES . 'payment/paypal/tpl_ec_button.php');
}
?>
<!-- ** END PAYPAL EXPRESS CHECKOUT ** -->
public_html/includes/modules/pages/login/header_php.php
edit and remove lines
Check for PayPal express checkout button suitability:
$paypalec_enabled = (defined('MODULE_PAYMENT_PAYPALWPP_STATUS') && MODULE_PAYMENT_PAYPALWPP_STATUS == 'True');
Check for express checkout button suitability:
$ec_button_enabled = ($paypalec_enabled && ($_SESSION['cart']->count_contents() > 0 && $_SESSION['cart']->total > 0));
not sure if you can move this file to public_html/includes/modules/your_template/pages/login/header_php.php
have not taken the time to try it yet, but if it works, you should probably do it