Changeset 3086512
- Timestamp:
- 05/14/2024 12:36:04 PM (22 months ago)
- Location:
- extendago-wp-connection/trunk
- Files:
-
- 3 edited
-
extendago-wp-connection.php (modified) (1 diff)
-
includes/cronjob/class-extendago-cronjob-functions.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
extendago-wp-connection/trunk/extendago-wp-connection.php
r3085804 r3086512 4 4 Plugin URI: http://www.arture.nl/extendago 5 5 Description: The Wordpress plugin for connecting Woocommerce with Extenda GO / Wallmob. You can manage your products inside Extenda GO or make your webshop as leading foor product manangement. You Stock changes will be two-way binding. 6 Version: 1.5. 16 Version: 1.5.2 7 7 Author: Arture B.V. 8 8 Author URI: https://arture.nl/ -
extendago-wp-connection/trunk/includes/cronjob/class-extendago-cronjob-functions.php
r3085804 r3086512 838 838 } 839 839 840 841 $retail_price = $variation->retail_price;842 if( isset($variation->sale_price) && !empty($variation->sale_price) ){843 $retail_price = $variation->sale_price;844 }845 846 840 // First variation 847 841 if( $i == 1 ){ … … 850 844 'id' => $product['id'], 851 845 'type_id' => '523', 852 'retail_price' => number_format(((float)$ retail_price * 100), 0, '.', ''), // price in cents846 'retail_price' => number_format(((float)$variation->retail_price * 100), 0, '.', ''), // price in cents 853 847 'cost_price' => 0, 854 848 'product_id' => $product['id'], … … 874 868 'id' => 'product_data-'.$variation->id, 875 869 'type_id' => '523', 876 'retail_price' => number_format(((float)$ retail_price * 100), 0, '.', ''), // price in cents870 'retail_price' => number_format(((float)$variation->retail_price * 100), 0, '.', ''), // price in cents 877 871 'cost_price' => 0, 878 872 'product_id' => $product['id'], -
extendago-wp-connection/trunk/readme.txt
r3085804 r3086512 5 5 Requires at least: 6.0 6 6 Tested up to: 6.4.3 7 Stable tag: 1.5. 17 Stable tag: 1.5.2 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 31 31 == Changelog == 32 32 33 = 1.5.2 = 34 * Revert change for sale price processing to Extenda GO 35 33 36 = 1.5.1 = 34 37 * Change for sale price processing to Extenda GO
Note: See TracChangeset
for help on using the changeset viewer.