Change name of 'Checkout' button in shopping cart?

Bring Your Business to LifeSupportImage StoreChange name of 'Checkout' button in shopping cart?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #54651
    Xpark Media
    Keymaster

    @chaosboi,

    You 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 );
    
    #54655
    chaosboi
    Participant

    Thanks 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 $ 🙂

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.