• Resolved ony

    (@ony88)


    I am new to stripe and still learning stuff… I love this plugin so far but I noticed something, I do not want when I edit the order on WooCommerce to change on stripe. I marked the order as canceled and it was refunded on stripe, I do not want this.

    Any advice to avoid this?

Viewing 9 replies - 1 through 9 (of 9 total)
  • Vijay Hardaha

    (@vijayhardaha)

    Carmin

    (@carminb)

    Hi @vijayhardaha,

    Thank you for providing that link!

    @ony88 we are actually adding a new set of features to the next release of the plugin where you can disable this functionality in the settings section. That will be available in the next few days.

    Kind Regards,

    Vijay Hardaha

    (@vijayhardaha)

    Happy to help & good to know feature will be available soon.

    Thread Starter ony

    (@ony88)

    @vijayhardaha Thanks a lot! I am new to this code, please where do I add this code?
    ( remove_action(‘woocommerce_order_status_cancelled’, ‘wc_stripe_order_cancelled’); )

    Good news for update @carminb looking forward to it.

    Carmin

    (@carminb)

    Hi @ony88,

    You can add that in your theme’s functions.php but make sure to wrap it in the WooCommerce init function like this:

    add_action( 'woocommerce_init', function(){
        remove_action('woocommerce_order_status_cancelled', 'wc_stripe_order_cancelled');
    }, 99);

    Kind Regards,

    Thread Starter ony

    (@ony88)

    @carminb You rock, thanks!

    Thread Starter ony

    (@ony88)

    @carminb Thanks again for the awesome plugin, I can’t wait to start using it… I have 2 questions regarding Afterpay and Klarna: I do not have to set up an account with them, once I go live, it should start working, correct?

    Also, I want to only show credit cards to certain countries lke USA and Canada Customers, I am not seeing the “Sell to specific countries” option.

    Thanks`

    Carmin

    (@carminb)

    I do not have to set up an account with them, once I go live, it should start working, correct?

    Yes, that is correct. Using Stripe, you don’t need to sign up for separate Klarna or Afterpay accounts.

    Also, I want to only show credit cards to certain countries lke USA and Canada Customers, I am not seeing the “Sell to specific countries” option.

    The sell to specific countries option is only offered for local payment methods. To my knowledge we haven’t received any requests for that feature beyond local payment methods.

    If you’re using a multi-currency plugin like WPML then that functionality is built into that plugin.

    Kind Regards,

    Thread Starter ony

    (@ony88)

    @carminb I am not using multi-currency. Is there a way for me to achieve this using a code via perhaps?

    Thanks

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Prevent canceled order to refund on Stripe’ is closed to new replies.