Changeset 2295147
- Timestamp:
- 04/30/2020 09:08:23 AM (6 years ago)
- Location:
- spreadr-for-woocomerce
- Files:
-
- 9 added
- 4 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/includes (added)
-
tags/1.0.1/includes/class-spreadr-install.php (added)
-
tags/1.0.1/includes/class-spreadr.php (added)
-
tags/1.0.1/includes/spreadr-core-functions.php (added)
-
tags/1.0.1/includes/spreadr-frontend-functions.php (added)
-
tags/1.0.1/includes/spreadr-update-default-settings.php (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/spreadr.php (added)
-
trunk/includes/class-spreadr-install.php (modified) (1 diff)
-
trunk/includes/spreadr-core-functions.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/spreadr.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
spreadr-for-woocomerce/trunk/includes/class-spreadr-install.php
r2286331 r2295147 70 70 private static function maybe_enable_setup_wizard() { 71 71 72 if (isset($_GET['plugin']) && $_GET['plugin'] == 'spreadr /spreadr.php') {72 if (isset($_GET['plugin']) && $_GET['plugin'] == 'spreadr-for-woocomerce/spreadr.php') { 73 73 74 74 $user = wp_get_current_user(); -
spreadr-for-woocomerce/trunk/includes/spreadr-core-functions.php
r2286331 r2295147 75 75 $price = $product['variants'][0]['price']; 76 76 $compare_price = $product['variants'][0]['compare_at_price']; 77 77 78 if($published == true){ 79 $published = 'publish'; 80 }else{ 81 $published = 'draft'; 82 } 78 83 $post_id = wp_insert_post( array( 79 84 'post_title' => $title, 80 85 'post_content' => $description, 81 'post_status' => 'publish',86 'post_status' => $published, 82 87 'post_type' => "product", 83 88 ) ); 89 84 90 85 91 -
spreadr-for-woocomerce/trunk/readme.txt
r2286331 r2295147 87 87 == Changelog == 88 88 1.0.0 - April 18, 2020 89 1.0.1 - April 30, 2020 89 90 90 91 == Upgrade Notice == -
spreadr-for-woocomerce/trunk/spreadr.php
r2286331 r2295147 5 5 * Plugin URI: https://spreadr.co/woocommerce 6 6 * Description: Use Spreadr Plugin to import products from Amazon to your WooCommerce store. Earn commissions via Amazon Affiliate Program or run your dropshipping business. 7 * Version: 1.0. 07 * Version: 1.0.1 8 8 * Author: spreadr 9 9 * Author URI: https://spreadr.co
Note: See TracChangeset
for help on using the changeset viewer.