bfl
Forum Replies Created
-
Hey @aalcalatbg. That behavior is actually intentional (to avoid annoying people who don’t want the autofill suggestions). You can also use the
↑and↓(up/down) arrow keys on your keyboard to open and navigate the suggestions menu. You can then pressEnterorTabto autofill a suggestion. You can also pressEscto close the menu. This might be easier for you than using the mouse.Forum: Plugins
In reply to: [Backend Payments for WooCommerce] AVS Error When Processing PaymentHey @starfiredev.
Can you please provide the following information? For privacy purposes, you can email this information to bfl.wordpress.org@gmail.com:
- The exact billing address copied directly from the Address line 1 and Address line 2 fields on the Edit order page.
- A screenshot of the Transaction Detail popup for the relevant transaction in your Authorize.Net Merchant Interface.
I also have a few questions:
- Are you getting this error for all orders or just this one?
- Have you ever had AVS issues with your regular payment gateway plugin?
If you just want a quick solution, the easiest thing to do would be to disable the billing details option that you mentioned and then set the Transaction was submitted without a billing address option in your AVS settings to anything other than Decline. That would cause transactions processed with this plugin to bypass AVS but would not affect transactions processed by customers.
Hey @kennyrhoads. If you’re on the latest version (2.0.0) and you’re getting this error, then you need to clear your browser’s cache (or press
CTRL+F5on the Edit order page).We have cache busting in place to prevent this kind of issue, so I’m not sure why this is happening. What browser are you using?
Forum: Plugins
In reply to: [Backend Payments for WooCommerce] Prefill amountHey @2020media. This plugin is for processing payments from the WordPress Administration Screens. There is no customer-facing payment form added by this plugin.
If you want to send a customer a link to the payment page for an order, you can open the order and choose the Email invoice / order details to customer action.
Let me know if I’ve misunderstood the question.
Hey @careyrob. I’ve released the update. Here’s the code snippet that will apply your customizations:
add_filter( 'woo_mp_stripe_charge_request', function ( $request, $order ) { $request['description'] = sprintf( '%1$s – Invoice %2$s', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ), $order->get_order_number() ); $request['metadata'] = [ 'customer_name' => sanitize_text_field( $order->get_billing_first_name() ) . ' ' . sanitize_text_field( $order->get_billing_last_name() ), 'customer_email' => sanitize_email( $order->get_billing_email() ), 'order_id' => $order->get_order_number(), 'invoice_id' => $order->get_order_number(), ]; return $request; }, 10, 2 );You can add this snippet to your theme’s
functions.phpfile or wherever you usually put your customizations. I’ve copied the code for the description and the metadata from the official WooCommerce Stripe Payment Gateway plugin, so it should be exactly the same. However if the relevant code in that plugin changes, you’ll need to update the snippet accordingly.Hey @careyrob. I’ll release an update soon that will add support for such snippets. I’ll reply to this thread when it’s ready and I’ll provide a code snippet that will automatically apply your customizations.
Forum: Plugins
In reply to: [Backend Payments for WooCommerce] Add a payment gateway (Cardinity)Hey. Sorry, Cardinity is not common enough to add support for at this time.
Forum: Plugins
In reply to: [Backend Payments for WooCommerce] Test mode with StripeHey @allenkiwi. Yes, the plugin supports Stripe test mode. Just enter your test API keys in the settings.
Forum: Reviews
In reply to: [Backend Payments for WooCommerce] Works as advertisedThanks @jfacemyer!
Forum: Plugins
In reply to: [Backend Payments for WooCommerce] Saved credit cardsHey @weseggs. I don’t have any immediate plans for this feature, however I will consider it.
Forum: Plugins
In reply to: [Backend Payments for WooCommerce] keep loadingYou can configure your settings to have order statuses update automatically after payments. However the other features you mentioned are not supported.
Forum: Plugins
In reply to: [Backend Payments for WooCommerce] keep loading- Have you configured the relevant settings? There are two options that you need to set for this feature. They are both located under WooCommerce > Settings > Manual Payment.
- Sorry, the plugin does not support those features.
Forum: Plugins
In reply to: [Backend Payments for WooCommerce] keep loadingI released an update. Errors like this one will now be displayed properly. Let me know how it works out for you.
Any update on this issue?
Forum: Plugins
In reply to: [Backend Payments for WooCommerce] PHP ErrorHey @clarityconnect. I figured out what the problem was. It turned out to be a bug in WooCommerce. I released an update that fixes the issue. You can now process payments on auto-draft orders.