• Resolved asgard01

    (@asgard01)


    Hello again.
    Please, tell me how to add a field with certain payment method for credit cards? For example: visa, mastercard, etc. Is it possible?
    I find just «Payment method title» field, but i want more details about transaction than «Credit Card Payment».

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author algol.plus

    (@algolplus)

    Hello

    What plugin do you use to accept credit cards?

    add_filter('woe_get_order_value_payment_method_title','woe_adjust_payment_method_title', 10, 2);
    function woe_adjust_payment_method_title($value, $order) {
    	// you must modify $value here 
    	// I'm not sure how the plugin stores CC details
    	return $value;
    }
    Thread Starter asgard01

    (@asgard01)

    Thank you for very fast answer!
    I use «SecurionPay for WooCommerce» plugin to accept credit cards. Are you already encountered with this plugin?

    Plugin Author algol.plus

    (@algolplus)

    They don’t record which credit card was used

    I see only “chargeId” is added to notes
    https://github.com/securionpay/securionpay-woocommerce/blob/master/classes/SecurionpayPaymentGateway.php#L149

    I’m sorry, I can’t help you for free, it will require a lot of time

    Thread Starter asgard01

    (@asgard01)

    Ok, thanks.
    I’ll try to change a plugin for accepting credit cards.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Certain payment method’ is closed to new replies.