Plugin Directory

Changeset 3445075


Ignore:
Timestamp:
01/22/2026 06:02:47 PM (4 weeks ago)
Author:
combustiongroup
Message:

Release 1.2.18: improve limit

Location:
happy-texting/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • happy-texting/trunk/core/class-happy-texting.php

    r3433841 r3445075  
    20702070            // WooCommerce customer stats - skip expensive operations when per_page > 100
    20712071            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;
    20742074            } else {
    20752075                $customer->orders_count = $wc_customer->get_order_count();
     
    21912191            $start_time = microtime(true);
    21922192            $execution_time_limit = 25.0; // seconds - leave 5s buffer for 30s PHP timeout
    2193             $is_high_load = ($per_page > 100); // Enable optimizations for high load
     2193            $is_high_load = false; // Enable optimizations for high load
    21942194           
    21952195            // Fetch locations_label once (instead of per-customer in enrichment)
  • happy-texting/trunk/happy-texting.php

    r3433841 r3445075  
    55 * @package       HAPPYTEXTI
    66 * @author        Happy Texting
    7  * @version       1.2.17
     7 * @version       1.2.18
    88 *
    99 * @wordpress-plugin
     
    1111 * Plugin URI:    https://happytexting.com/
    1212 * Description:   This plugin allows you to keep your customer list up to sync with www.happytexting.com
    13  * Version:       1.2.17
     13 * Version:       1.2.18
    1414 * Author:        Combustion Group
    1515 * Author URI:    https://combustiongroup.com
     
    2727
    2828// Plugin version
    29 define( 'HAPPYTEXTI_VERSION',       '1.2.17' );
     29define( 'HAPPYTEXTI_VERSION',       '1.2.18' );
    3030
    3131// Plugin Root File
  • happy-texting/trunk/readme.txt

    r3433841 r3445075  
    33License URI: https://www.gnu.org/licenses/gpl-2.0.html
    44Tested Up To: 6.6.1
    5 Stable tag: 1.2.17
     5Stable tag: 1.2.18
Note: See TracChangeset for help on using the changeset viewer.