Changeset 2506734
- Timestamp:
- 03/31/2021 01:07:54 PM (5 years ago)
- Location:
- wootomation/trunk
- Files:
-
- 1 deleted
- 3 edited
-
includes/class-ai.php (deleted)
-
includes/class-train.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
-
wootomation.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wootomation/trunk/includes/class-train.php
r2505880 r2506734 210 210 'product_id' => $product_id 211 211 ), 212 array('%d','%s','%d') ,212 array('%d','%s','%d') 213 213 ); 214 214 } … … 219 219 $recID = $wpdb->get_var( "SELECT id FROM ".($wpdb->prefix . 'wootomation_suggestions')." WHERE product_1 LIKE ".$product_1." AND product_2 LIKE ".$product_2); 220 220 if( $recID ){ 221 $wpdb->update(222 $wpdb->prefix.'wootomation_suggestions',223 array(224 'similarity' => $similarity225 ),226 array(227 'id' => $recID,228 ),229 array('%f'),230 array('%d'),231 );221 $wpdb->update( 222 $wpdb->prefix.'wootomation_suggestions', 223 array( 224 'similarity' => $similarity 225 ), 226 array( 227 'id' => $recID, 228 ), 229 array('%f'), 230 array('%d') 231 ); 232 232 } else { 233 233 $wpdb->insert( … … 238 238 'similarity' => $similarity 239 239 ), 240 array('%d','%d','%f') ,240 array('%d','%d','%f') 241 241 ); 242 242 } -
wootomation/trunk/readme.txt
r2505831 r2506734 45 45 2. Storefront example 46 46 3. Backend options 47 48 == Changelog == 49 50 = 2.0.2 = 51 * Fixed minor bugs. 52 53 = 2.0.1 = 54 * Fixed minor bugs. 47 55 48 56 == Changelog == -
wootomation/trunk/wootomation.php
r2505880 r2506734 4 4 * Plugin URI: https://wpharvest.com/ 5 5 * Description: 🤖 Increase the sales of your WooCommerce shop by suggesting the right products to your customers, with the help of Machine Learning Artificial Intelligence. To take advantage of its power, just install and activate, it works out of the box. 6 * Version: 2.0. 17 * Stable tag: 2.0. 16 * Version: 2.0.2 7 * Stable tag: 2.0.2 8 8 * Author: Dragos Micu 9 9 * Author URI: https://wpharvest.com/
Note: See TracChangeset
for help on using the changeset viewer.