Skip to content

Commit

Permalink
1.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
iverok committed Jun 25, 2020
1 parent ddfbb08 commit f9cd85b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
Contributors: wphostingdev, iverok, pmbakken, perwilhelmsen
Tags: woocommerce, vipps
Requires at least: 4.7
Tested up to: 5.4.1
Tested up to: 5.4.2
Stable tag: trunk
Requires PHP: 5.6
WC requires at least: 3.3.4
WC tested up to: 4.2.0
WC tested up to: 4.2.2
License: MIT
License URI: https://choosealicense.com/licenses/mit/

Expand Down Expand Up @@ -113,7 +113,7 @@ To be sure, you should test your shipping methods in Express Checkout before goi
= I'd like to use sequential order numbers at Vipps instead of the WooCommerce order-ids using a sequential order number plugin. Does this plugins support that?
Yes, though you need to ensure that the order-id's you produce like this are unique for your Vipps account, and you currently have to use a filter in your themes' functions.php file. We recommend using a prefix for your order ids, so a filter that will work with sequential order numbers would look like

`add_filter('woo_vipps_order_id', function ($default, $prefix, $order) {
`add_filter('woo_vipps_orderid', function ($default, $prefix, $order) {
return $prefix . $order->get_order_number();
}, 10, 3);`

Expand Down Expand Up @@ -200,7 +200,7 @@ From version 1.1.13 you can also modify the javascript using the new WP hooks li

== Changelog ==

= 2020.06.08 version 1.4.8 =
= 2020.06.29 version 1.4.8 =
* Fixed a bug in express checkout shipping calculations where cart totals could be wrong
* Changed license from AGPLv3 (http://www.gnu.org/licenses/agpl-3.0.html) to MIT (https://choosealicense.com/licenses/mit/)
* Added filter to remove Vipps as option in Klarna Checkout, and added a check for unsupported carts.
Expand Down
6 changes: 3 additions & 3 deletions woo-vipps.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
Author URI: https://www.wp-hosting.no/
Text-domain: woo-vipps
Domain Path: /languages
Version: 1.4.7
Version: 1.4.8
Requires at least: 4.7
Tested up to: 5.4.1
Tested up to: 5.4.2
Stable tag: trunk
Requires PHP: 5.6
WC requires at least: 3.3.4
WC tested up to: 4.2.0
WC tested up to: 4.2.2
License: MIT
License URI: https://choosealicense.com/licenses/mit/
Expand Down

0 comments on commit f9cd85b

Please sign in to comment.