Title: kfwebmaster's Replies | WordPress.org

---

# kfwebmaster

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/users/kfwebmaster/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/kfwebmaster/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] Shipping cost is sometimes not charged in Vipps Checkout](https://wordpress.org/support/topic/shipping-cost-is-sometimes-not-charged-in-vipps-checkout/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [6 months, 3 weeks ago](https://wordpress.org/support/topic/shipping-cost-is-sometimes-not-charged-in-vipps-checkout/#post-18686148)
 * I added a temporary fix that I hope will place orders on-hold when this issue
   is detected, so they don’t get charged the wrong amount:
 *     ```wp-block-code
       add_action('woocommerce_order_status_pending_to_processing', 'place_order_with_wrong_total_on_hold', 999, 2);function place_order_with_wrong_total_on_hold($order_id, $order){    $vipps_amount = $order->get_meta('_vipps_amount');    $order_total = $order->get_total()*100;    if ( $vipps_amount - $order_total > 5000 )    {         $order->update_status('on-hold', 'Order total 50 kr less than reserved amount in vipps. ', false);    }}
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] Incorrect rounding causes failure to capture reserved amount](https://wordpress.org/support/topic/incorrect-rounding-causes-failure-to-capture-reserved-amount/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [7 months ago](https://wordpress.org/support/topic/incorrect-rounding-causes-failure-to-capture-reserved-amount/#post-18680243)
 * updating has solved the issue of incorrect values.
 * I forced the amounts to differ to cause the other issue, and the reserved amount
   was not released.
 * so both issues seem to be solved by updating to the latest version.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] Incorrect rounding causes failure to capture reserved amount](https://wordpress.org/support/topic/incorrect-rounding-causes-failure-to-capture-reserved-amount/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [7 months, 2 weeks ago](https://wordpress.org/support/topic/incorrect-rounding-causes-failure-to-capture-reserved-amount/#post-18661883)
 * Great! I’ll let you know when I’ve been able to update and test the new version
   🙂
 * I see. Then it makes sense that it appeared locally, since the local tests had
   not been to vipps checkout.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] Incorrect rounding causes failure to capture reserved amount](https://wordpress.org/support/topic/incorrect-rounding-causes-failure-to-capture-reserved-amount/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [7 months, 2 weeks ago](https://wordpress.org/support/topic/incorrect-rounding-causes-failure-to-capture-reserved-amount/#post-18661825)
 * We do have some custom code to send data to our CRM on order complete, but it
   should not change the status or anything. I’ll ask the developers of that integration
   to take a look.
 * We found that we can change the order status to “Awaiting payment” and then send
   the email with order details, and it will then contain a link to a payment page
   at /kassen/order-pay/12345/?pay_for_order=true&key=wc_order_q1W2e3R4t5Y6
 * So we can atleast encourage them to pay for their orders, in a very simple way.
 * Vipps appears as a payment option when I test this locally, but not when I test
   it on the stage or prod servers :/
   All the settings seem to be the same, do you
   know how to make Vipps appear on the payment page?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] Incorrect rounding causes failure to capture reserved amount](https://wordpress.org/support/topic/incorrect-rounding-causes-failure-to-capture-reserved-amount/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [7 months, 2 weeks ago](https://wordpress.org/support/topic/incorrect-rounding-causes-failure-to-capture-reserved-amount/#post-18661674)
 * I’ve sent it.
 * But I now realize we’re on an older version of the plugin, maybe that is the 
   issue?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] Incorrect rounding causes failure to capture reserved amount](https://wordpress.org/support/topic/incorrect-rounding-causes-failure-to-capture-reserved-amount/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [7 months, 2 weeks ago](https://wordpress.org/support/topic/incorrect-rounding-causes-failure-to-capture-reserved-amount/#post-18661170)
 * Here is a way to reproduce
    1. number of decimal places set to 0
    2. VAT of 25%
    3. product with price 299,- VAT included
    4. flat rate shipping at price 47,50 and taxable
    5. result: 358,- is reserved, but order total is 359,-
 * _product price is probably irrelevant, as it seems to be the flat rate shipping
   causing the rounding error. _
 * No, the orders are not old. The issue can happen even if I complete an order 
   within seconds of placing the order.
 * Below is a copy of what was added to the log of an order when it was set to “
   Completed” at 7:44. It seems that the reservation was released within the same
   action. _I think the log order is wrong, since the final status is “On hold”._
 *     ```wp-block-code
       Ordrestatus endret fra Behandler til Fullført.29. September 2025 at 07:44Ordre 350144: 459.00 NOK er kansellert for å frigjøre reserveringen i kundens bankkonto29. September 2025 at 07:44Kunne ikke belaste Vipps-betalingen for denne ordren!29. September 2025 at 07:44Kunne ikke belaste Vipps-betalingen – status satt til on-hold Ordrestatus endret fra Fullført til På vent.29. September 2025 at 07:44Kunne ikke belaste Vipps-betalingen for denne ordren!29. September 2025 at 07:44
       ```
   
 * It does release the funds, if we try to capture again we get error 6070 from 
   Vipps; which is that the reserved amount has been released and can no longer 
   be captured.
 * We only set the status to completed, never to cancelled or refunded.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] vipps checkout stopped working](https://wordpress.org/support/topic/vipps-checkout-virker-plutselig-ikke/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [12 months ago](https://wordpress.org/support/topic/vipps-checkout-virker-plutselig-ikke/#post-18467407)
 * Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed Manager For WooCommerce - Sell on 200+ Online Marketplaces] test-mode for stage and development environment](https://wordpress.org/support/topic/test-mode-for-stage-and-development-environment/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/test-mode-for-stage-and-development-environment/#post-17034760)
 * Great! Thank you 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] How may we avoid the step for selecting shipping address in the app?](https://wordpress.org/support/topic/the-vipps-app-shows-a-step-for-selecting-delivery-address/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/the-vipps-app-shows-a-step-for-selecting-delivery-address/#post-16547788)
 * The plugin is out on our webshop and working fine 🙂
 * Thank you so much for solving this so quickly! 😀
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] How may we avoid the step for selecting shipping address in the app?](https://wordpress.org/support/topic/the-vipps-app-shows-a-step-for-selecting-delivery-address/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/the-vipps-app-shows-a-step-for-selecting-delivery-address/#post-16547261)
 * Looks good!
 * Sounds like a solid solution 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] How may we avoid the step for selecting shipping address in the app?](https://wordpress.org/support/topic/the-vipps-app-shows-a-step-for-selecting-delivery-address/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/the-vipps-app-shows-a-step-for-selecting-delivery-address/#post-16544120)
 * I see. Thanks for the reply 🙂
 * Great to hear that you are working on it!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] How may we avoid the step for selecting shipping address in the app?](https://wordpress.org/support/topic/the-vipps-app-shows-a-step-for-selecting-delivery-address/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/the-vipps-app-shows-a-step-for-selecting-delivery-address/#post-16544023)
 * I’ve tried using the Vipps Checkout alternative.
 * This also shows the option for address fields, even though I have checked this
   option:
 * ![](https://i0.wp.com/i.postimg.cc/05WVxwCs/woo-vipps-dont-require-address.jpg?
   ssl=1)
 * The prouduct is set to virtual, if that matters, and I also tried setting it 
   to downloadable, but I still get this option:
 * ![](https://i0.wp.com/i.postimg.cc/rFbMPjZR/Screenshot-20230309-153154.png?ssl
   =1)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] How may we avoid the step for selecting shipping address in the app?](https://wordpress.org/support/topic/the-vipps-app-shows-a-step-for-selecting-delivery-address/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/the-vipps-app-shows-a-step-for-selecting-delivery-address/#post-16543815)
 * ![](https://i0.wp.com/i.postimg.cc/RZZyddFj/vipps-flow-option.jpg?ssl=1)
 * We are using this option, which should be correct when address fields are not
   needed.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] How may we avoid the step for selecting shipping address in the app?](https://wordpress.org/support/topic/the-vipps-app-shows-a-step-for-selecting-delivery-address/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/the-vipps-app-shows-a-step-for-selecting-delivery-address/#post-16543396)
 * According to the vipps docs, this new flow is the only flow:
 * [https://vippsas.github.io/vipps-developer-docs/docs/APIs/ecom-api/vipps-ecom-api-faq#express-checkout ](https://vippsas.github.io/vipps-developer-docs/docs/APIs/ecom-api/vipps-ecom-api-faq#express-checkout )
 * The docs also suggest that using the [Userinfo API](https://vippsas.github.io/vipps-developer-docs/docs/APIs/userinfo-api)
   will allow for a flow without shipping options. Is this something that can be
   added to this plugin?
 * Could be a useful feature for webshops that accept donations, like ours, or sell
   licenses, digital material, or anything else that doesn’t require shipping.
    -  This reply was modified 3 years, 2 months ago by [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/).
      Reason: more information
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pay with Vipps and MobilePay for WooCommerce] Vipps becomes unavailable when customers uses back-button to cancel order](https://wordpress.org/support/topic/vipps-becomes-unavailable-when-customers-uses-back-button-to-cancel-order/)
 *  Thread Starter [kfwebmaster](https://wordpress.org/support/users/kfwebmaster/)
 * (@kfwebmaster)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/vipps-becomes-unavailable-when-customers-uses-back-button-to-cancel-order/#post-16187406)
 * no worries, thanks for the quick responses 🙂

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/users/kfwebmaster/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/kfwebmaster/replies/page/2/?output_format=md)