• Resolved custompczone

    (@custompczone)


    I need to change the wording for cash pickup orders from ‘cash on delivery’ to ‘cash on pickup’

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Kshirod Patel

    (@kshirod-patel)

    Hello,

    Please use this in your active theme functions.php file

    add_filter( 'rpress_payment_gateways',  'rpress_change_gateway_labels' );
    
    function rpress_change_gateway_labels( $gateways ) {
    	$gateways['cash_on_delivery'] = array(
    			'admin_label'    => __( 'Cash On Pickup', 'restropress' ),
    			'checkout_label' => __( 'cash On Pickup', 'restropress' ),
    		);
    	return $gateways;
    }
    Thread Starter custompczone

    (@custompczone)

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Cash on pickup’ is closed to new replies.