Bring Your Business to Life › Support › Image Store › Change name of 'Checkout' button in shopping cart?
Viewing 3 posts - 1 through 3 (of 3 total)
- AuthorPosts
- August 14, 2013 at 4:49 am #54636
chaosboi
ParticipantIs it possible to change the name of the ‘checkout’ button in the shopping cart?
I would like to have it say ‘Bank Deposit’, so there is a clear distinction between people using PayPal and Bank deposit.
Thanks again.
August 14, 2013 at 4:38 pm #54651Xpark Media
KeymasterYou can’t do it using the settings, but you can add this code to your theme’s functions.php file or in a new plugin.
function change_ims_checkout_label( $gateways ){ if( isset( $gateways['enotification']['name'] ) && $gateways['enotification']['name'] == 'Checkout' ) $gateways['enotification']['name'] = __( 'Bank Deposit' ); return $gateways; } add_filter( 'ims_gateways', 'change_ims_checkout_label', 20 );August 14, 2013 at 6:17 pm #54655chaosboi
ParticipantThanks heaps…I’ll give this a go.
Have a big even’t happening over the next few days. Some donation $ coming your way after I make some $ 🙂 - AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.