Hello
ACF adds 2 keys .
please use key “direct_debit_iban”.
Wow, thanks for this quick reply!
It doesn‘t offer me the key as you suggested. I‘ve been looking for it, I know about this from other fields … it should be inside the /cart, right? There are no such keys, without “_” at the beginning.
I also tried “or use meta here” with “direct_debit_iban”, but with the same result
hello
What plugin adds key _direct_debit_iban ?
please, run phpMyAdmin and review records in table wp_postmeta.
probably, you will find correct key
What you mean?
What plugin adds key _direct_debit_iban ?
the plugin is: Advanced Order Export For WooCommerce (Pro), right?
I don‘t know if I understand you right.
I checked database, but didn‘t find nothing concerning direct_debit.
I mean, I found recently added entries concerning product purchase (with the wrong iban numbers)
further suggestions?
regards
Yes, I know name of my plugin 🙂
What plugin adds IBAN/BIC information for the order ?
Sorry, I know that you know :)…. you have been very helpful already in the past! … I simply didn‘t understand the question.
It is Germanized Pro which adds IBAN/BIC (Direct debit scheme (SEPA))
Could you submit Germanized Pro(zip file) as new ticket to https://algolplus.freshdesk.com/ ?
I should review its code to understand how to get correct IBAN value.
Hi, issue solved by adding this code, provided by the plugin author, to the “Misc Settings” section:
add_filter('woe_get_order_value__direct_debit_iban',function ($value, $order,$fieldname) {
$gateway = class_exists( 'WC_GZD_Gateway_Direct_Debit' ) ? new WC_GZD_Gateway_Direct_Debit() : false;
if ( $gateway && is_callable( array( $gateway, 'maybe_decrypt' ) ) ) {
$value = $gateway->maybe_decrypt( $value );
}
return $value;
},10,3);
add_filter('woe_get_order_value__direct_debit_bic',function ($value, $order,$fieldname) {
$gateway = class_exists( 'WC_GZD_Gateway_Direct_Debit' ) ? new WC_GZD_Gateway_Direct_Debit() : false;
if ( $gateway && is_callable( array( $gateway, 'maybe_decrypt' ) ) ) {
$value = $gateway->maybe_decrypt( $value );
}
return $value;
},10,3);
regards and thanks for the quick support to the author!