• Resolved wonkeycypress

    (@wonkeycypress)


    Hello.
    Great plugin.

    Please may you add the payment option ‘Cash on Collection’?
    Currently, due to the corona virus, my business only provides collection service and so only having the payment method stating ‘Cash on Delivery’ is confusing to the customer.

    Many thanks,
    Harry.

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

    (@kshirod-patel)

    Hello,

    In that case you can use this code in your active theme functions.php file

    add_filter( 'rpress_payment_gateways', 'rpress_gateways' );
    function rpress_gateways( $gateways ) {
    	if ( isset( $gateways['cash_on_delivery'] ) ) {
    		$gateways['cash_on_delivery']['checkout_label'] = __( 'Cash On Collection', 'restropress' );
    	}
    	return $gateways;
    }
    Plugin Contributor Kshirod Patel

    (@kshirod-patel)

    Hello,

    We are closing this topic because of inactivity.

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