• Resolved redokodesign

    (@redokodesign)


    Hi,

    Great plugin!

    The only problem we have is that we aren’t able to offer ‘Pay by card’ for our collection service.

    Since Covid 19 we (and many other users) are operating a collection-only service. But the only payment option we can offer on the checkout page is ‘Cash on collection.’

    I changed the text in the plugin files but this was overwritten when it updated. Can you please let us know how we can offer ‘cash or card on collection’? Or just let us know how to adjust the text so it won’t automatically overwrite after an update?

    Thanks so much. This might be worth adding as a permanent option in the post-covid world.

    Tom

Viewing 1 replies (of 1 total)
  • Plugin Author Nirmal Kumar Ram

    (@sagarseth9)

    Hello @redokodesign,

    Thanks for reaching out to us.

    We already have pay by cash option which you can use and if you want to change the text of the payment gateway then you can simply add the following code to your theme’s functions.php file so that when there is an update of the plugin the code will stay there.

    add_filter( 'rpress_payment_gateways', function( $gateways ){
    	$gateways['cash_on_delivery'] = array(
    		'admin_label'    => __( 'Pay by card', 'restropress' ),
    		'checkout_label' => __( 'Pay by card', 'restropress' )
    	);
    } );

    Let me know if that works for you.

    Regards
    Nirmal

Viewing 1 replies (of 1 total)

The topic ‘‘Pay by card’ option’ is closed to new replies.