Changeset 3201584
- Timestamp:
- 12/03/2024 11:19:02 AM (14 months ago)
- Location:
- cart-recovery/trunk
- Files:
-
- 3 edited
-
cart-recovery-for-wordpress.php (modified) (2 diffs)
-
classes/Main.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cart-recovery/trunk/cart-recovery-for-wordpress.php
r3168268 r3201584 6 6 * Description: An easy-to-use plugin that allows you to capture abandoned, and failed orders, and follow up. 7 7 * Author: Ademti Software 8 * Version: 3. 3.38 * Version: 3.4.0 9 9 * WC requires at least: 9.0 10 10 * WC tested up to: 9.4 … … 38 38 } 39 39 40 define( 'CRFW_VERSION', '3. 3.3' );41 define( 'CRFW_DB_VERSION', 5);40 define( 'CRFW_VERSION', '3.4.0' ); 41 define( 'CRFW_DB_VERSION', 6 ); 42 42 43 43 if ( version_compare( phpversion(), '5.5', '<' ) ) { -
cart-recovery/trunk/classes/Main.php
r3019706 r3201584 304 304 305 305 /** 306 * Adds a cart_id index to the crfw_cart_event table. 307 * 308 * @return void 309 */ 310 private function upgrade_db_to_6() { 311 global $wpdb; 312 313 require_once ABSPATH . 'wp-admin/includes/upgrade.php'; 314 315 $charset_collate = $wpdb->get_charset_collate(); 316 $table_name = $wpdb->prefix . 'crfw_cart_event'; 317 $sql = "CREATE TABLE $table_name ( 318 id INT NOT NULL AUTO_INCREMENT, 319 cart_id INT NOT NULL, 320 type varchar(255) NOT NULL DEFAULT 'note', 321 details text, 322 created INT NOT NULL, 323 PRIMARY KEY (id) 324 KEY cart_id_idx (cart_id) 325 ) $charset_collate"; 326 dbDelta($sql); 327 } 328 329 /** 306 330 * Output the admin header wrappers. 307 331 */ -
cart-recovery/trunk/readme.txt
r3178043 r3201584 7 7 License: GPL v2 8 8 Requires PHP: 7.4 9 Stable tag: 3. 3.39 Stable tag: 3.4.0 10 10 11 11 Cart recovery for WordPress brings abandoned cart recovery and tracking to your WordPress store. … … 51 51 == Changelog == 52 52 53 = 3.4.0 = 54 * Update: Performance improvement to cart event queries 55 53 56 = 3.3.3 = 54 57 * Fix: Resolve issue where preview emails could fail if a zero-value product was selected
Note: See TracChangeset
for help on using the changeset viewer.