Changeset 3445075
- Timestamp:
- 01/22/2026 06:02:47 PM (4 weeks ago)
- Location:
- happy-texting/trunk
- Files:
-
- 3 edited
-
core/class-happy-texting.php (modified) (2 diffs)
-
happy-texting.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
happy-texting/trunk/core/class-happy-texting.php
r3433841 r3445075 2070 2070 // WooCommerce customer stats - skip expensive operations when per_page > 100 2071 2071 if ($skip_expensive_ops) { 2072 $customer->orders_count = null;2073 $customer->total_spent = null;2072 $customer->orders_count = 0; 2073 $customer->total_spent = 0.0; 2074 2074 } else { 2075 2075 $customer->orders_count = $wc_customer->get_order_count(); … … 2191 2191 $start_time = microtime(true); 2192 2192 $execution_time_limit = 25.0; // seconds - leave 5s buffer for 30s PHP timeout 2193 $is_high_load = ($per_page > 100); // Enable optimizations for high load2193 $is_high_load = false; // Enable optimizations for high load 2194 2194 2195 2195 // Fetch locations_label once (instead of per-customer in enrichment) -
happy-texting/trunk/happy-texting.php
r3433841 r3445075 5 5 * @package HAPPYTEXTI 6 6 * @author Happy Texting 7 * @version 1.2.1 77 * @version 1.2.18 8 8 * 9 9 * @wordpress-plugin … … 11 11 * Plugin URI: https://happytexting.com/ 12 12 * Description: This plugin allows you to keep your customer list up to sync with www.happytexting.com 13 * Version: 1.2.1 713 * Version: 1.2.18 14 14 * Author: Combustion Group 15 15 * Author URI: https://combustiongroup.com … … 27 27 28 28 // Plugin version 29 define( 'HAPPYTEXTI_VERSION', '1.2.1 7' );29 define( 'HAPPYTEXTI_VERSION', '1.2.18' ); 30 30 31 31 // Plugin Root File -
happy-texting/trunk/readme.txt
r3433841 r3445075 3 3 License URI: https://www.gnu.org/licenses/gpl-2.0.html 4 4 Tested Up To: 6.6.1 5 Stable tag: 1.2.1 75 Stable tag: 1.2.18
Note: See TracChangeset
for help on using the changeset viewer.