• Resolved avigdor

    (@avigdor)


    1) Is there any way I as an admin can edit the information in the various fields?
    For instance, when I create a manual order, is there a way to enter a token i already have without going through the front end?
    2) when choosing from inside the clients’ my-account -> update payment methods, the client is required to enter also the ID/SSN/Passport number (mandatory), is there a way to delete this requirement to show only cc number, expiration date and CVV?

    Thanks.

Viewing 1 replies (of 1 total)
  • 1) And which token is that? Tokens are meant to be private and not manageable by admins.
    There’s always A way, But I’m not sure if the feature you’re asking-for is universal enough to be included in the plugin.
    2) Settings are shared throughout the payment forms, but you could easily override them on the ‘add payment method’ page. Please use this snippet on your theme’s functions.php file:

    add_filter( 'wc_pelecard_gateway_my_account_iframe_args', function( $args ) {
    	$args['CardHolderName'] = $args['CustomerIdField'] = 'hide';
    	return $args;
    } );

    * Not sure it’ll work though, CC companies usually require this field for extra security.

Viewing 1 replies (of 1 total)
  • The topic ‘manually token insertion into admin’ is closed to new replies.