A client recently had some complaints from her customers that it was confusing to have checkout right next to Checkout with paypal. As shown in this example.

checkoutinIS

To fix this I decided to use the jQuery .text function to replace the text without affecting the button.

In the “Custom Header” in your Infusionsoft Shopping cart theme,

CustomHeader

Paste the following code,

<script>

jQuery(window).ready(function(){ jQuery("html body div#wrapper form#checkout div#CHECKOUT_LINKS div.checkoutLinksBottom a#checkoutButton.continueButton").text('Checkout with Credit Card');});

jQuery(window).ready(function(){ jQuery("html body div#wrapper form#checkout div#contentWide div#CHECKOUT_LINKS_TOP div.checkoutLinksTop a#checkoutButtonDup.continueButton").text('Checkout with Credit Card');});

</script>

this should give you the following result.

checkoutwithCreditCardinIS

Did we screw something up? Please click contact us in the footer below. Thanks!


Comments are closed.