Title: rememberfriends's Replies | WordPress.org

---

# rememberfriends

  [  ](https://wordpress.org/support/users/rememberfriends/)

 *   [Profile](https://wordpress.org/support/users/rememberfriends/)
 *   [Topics Started](https://wordpress.org/support/users/rememberfriends/topics/)
 *   [Replies Created](https://wordpress.org/support/users/rememberfriends/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/rememberfriends/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/rememberfriends/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/rememberfriends/engagements/)
 *   [Favorites](https://wordpress.org/support/users/rememberfriends/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mollie Payments for WooCommerce] Klarna orders via Mollie not marked as paid in WooCommerce (multiple sites)](https://wordpress.org/support/topic/klarna-orders-via-mollie-not-marked-as-paid-in-woocommerce-multiple-sites/)
 *  Thread Starter [rememberfriends](https://wordpress.org/support/users/rememberfriends/)
 * (@rememberfriends)
 * [10 months, 2 weeks ago](https://wordpress.org/support/topic/klarna-orders-via-mollie-not-marked-as-paid-in-woocommerce-multiple-sites/#post-18606361)
 * Hi [@femiyb](https://wordpress.org/support/users/femiyb/) Femi — thanks for jumping
   on this.
 * We installed the Status Check helper you linked and tested. Result: new Klarna
   orders now leave “Pending payment” as soon as they’re authorized. On our side
   we treat an authorized Klarna payment as paid, so we also added a small fallback
   hook that promotes authorized Klarna orders to Processing (and marks them paid)
   even if the buyer doesn’t return to the Thank You page. Capture still happens
   when we set the order to Completed (on shipment).
 * So far this resolves it for us. For anyone who needs the same behavior, this 
   is the snippet we used:
 *     ```wp-block-code
       // Klarna via Mollie: when AUTHORIZED, treat as paid + move to Processing.function ms_klarna_authorized_processing_and_paid( $order_id, $payment_id ) {    $order = wc_get_order( $order_id );    if ( ! $order ) return;    // Only Klarna through Mollie    $klarna_gateways = [        'mollie_wc_gateway_klarnapaylater',        'mollie_wc_gateway_klarnapaynow',        'mollie_wc_gateway_klarnasliceit',    ];    if ( ! in_array( $order->get_payment_method(), $klarna_gateways, true ) ) return;    // Promote status    if ( $order->has_status( [ 'pending', 'on-hold' ] ) ) {        $order->update_status(            'processing',            'Klarna payment authorized via Mollie (treated as paid; capture on Completed).'        );    }    // Mark WooCommerce order as "paid" for integrations    if ( method_exists( $order, 'is_paid' ) && ! $order->is_paid() ) {        $order->set_date_paid( time() );        $order->save();    }}// Cover Mollie v7/v8 hooksadd_action( 'mollie_payments_order_authorized',   'ms_klarna_authorized_processing_and_paid', 10, 2 );add_action( 'mollie_payments_payment_authorized', 'ms_klarna_authorized_processing_and_paid', 10, 2 );
       ```
   
 * Question: do you plan to restore updating the WooCommerce status directly on 
   the **`payment.authorized`** webhook in a coming release? That would let us remove
   the workaround and rely only on the plugin again .
 * Thanks again!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mollie Payments for WooCommerce] Klarna orders via Mollie not marked as paid in WooCommerce (multiple sites)](https://wordpress.org/support/topic/klarna-orders-via-mollie-not-marked-as-paid-in-woocommerce-multiple-sites/)
 *  Thread Starter [rememberfriends](https://wordpress.org/support/users/rememberfriends/)
 * (@rememberfriends)
 * [10 months, 2 weeks ago](https://wordpress.org/support/topic/klarna-orders-via-mollie-not-marked-as-paid-in-woocommerce-multiple-sites/#post-18605688)
 * Hi, quick update after contacting Mollie support:
 * They confirmed that the payments are indeed being **authorized**, but the orders
   in WooCommerce are not updating. Support told me:
 * > “I can see this payment as authorised, so you should capture the payment for
   > the status to change.”
 * The problem is that Klarna’s normal flow should be:
    - **Authorized payment → WooCommerce order moves to Processing**
    - **Capture happens later when order is marked as Completed (shipped)**
 * Right now, everything stays stuck in _Pending payment_ after authorization, which
   breaks stock management and automations.
 * So the issue is that WooCommerce is not reacting to the **authorized** status
   anymore. It looks like a regression since the 8.0.x update.
 * Is there any confirmation from Mollie devs whether this is a **bug in the latest
   version** and if a fix is coming? Or do we need to add a temporary workaround(
   e.g. hook into `mollie_payments_order_authorized` to update status)?
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TranslatePress - Translate Multilingual sites with AI Translation] KILLED QUERY](https://wordpress.org/support/topic/killed-query/)
 *  Thread Starter [rememberfriends](https://wordpress.org/support/users/rememberfriends/)
 * (@rememberfriends)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/killed-query/#post-14677956)
 * Thank you!!!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextMove Lite - Thank You Page for WooCommerce] notices php 7.4.0](https://wordpress.org/support/topic/notices-php-7-4-0-3/)
 *  [rememberfriends](https://wordpress.org/support/users/rememberfriends/)
 * (@rememberfriends)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/notices-php-7-4-0-3/#post-13159062)
 * I have the same problem =/
    Getting alot of this 72mb for a couple of hours had
   to turn of your plugin
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TranslatePress - Translate Multilingual sites with AI Translation] How to switch video according to selected language](https://wordpress.org/support/topic/how-to-do-switch-video-according-to-selected-language/)
 *  [rememberfriends](https://wordpress.org/support/users/rememberfriends/)
 * (@rememberfriends)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/how-to-do-switch-video-according-to-selected-language/#post-12832142)
 * I would try to do it with the [trp_language language=”en_US”] English content
   only [/trp_language]
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Database Error](https://wordpress.org/support/topic/database-error-310/)
 *  [rememberfriends](https://wordpress.org/support/users/rememberfriends/)
 * (@rememberfriends)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/database-error-310/#post-12751497)
 * It looks like it´s there last update that have fucked all our sites up
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Yoast SEO 14.0.1 Bug?](https://wordpress.org/support/topic/wordfence-14-0-1-bug/)
 *  [rememberfriends](https://wordpress.org/support/users/rememberfriends/)
 * (@rememberfriends)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/wordfence-14-0-1-bug/page/2/#post-12751343)
 * Same for me i don´t have ” Discourage search engines from indexing this site”
   enabled.

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