Plugin Directory

Changeset 3429280


Ignore:
Timestamp:
12/29/2025 08:14:07 PM (8 weeks ago)
Author:
rermis
Message:

v5.0.22 = * Improvements to queue and fetch tracking status

Location:
pb-shipping/tags/5.0.22
Files:
6 copied

Legend:

Unmodified
Added
Removed
  • pb-shipping/tags/5.0.22/pb_functions.php

    r3417629 r3429280  
    66Author: RLDD
    77Author URI: https://richardlerma.com/contact/
    8 Version: 5.0.21
    9 Copyright: (c) 2020-2025 rldd.net - All Rights Reserved
     8Version: 5.0.22
     9Copyright: (c) 2020-2026 rldd.net - All Rights Reserved
    1010License: GPLv3 or later
    1111License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    1414*/
    1515
    16 global $espb_version; $espb_version='5.0.21';
     16global $espb_version; $espb_version='5.0.22';
    1717if(!defined('ABSPATH')) exit;
    1818
     
    18281828    JOIN wp_postmeta m ON m.post_id=o.ID AND m.meta_key LIKE '_pb_label_meta%' AND m.meta_value NOT LIKE '%inbound%' AND m.meta_value NOT LIKE '%cancel%' AND m.meta_value NOT LIKE '%delivered,%'
    18291829    WHERE o.post_type IN ('import_order','shop_order')
    1830     AND (LENGTH('$target')>1 OR (d.post_id IS NULL OR DATE_FORMAT(d.meta_value,'%Y-%m-%d') BETWEEN DATE_FORMAT(NOW()-INTERVAL 3 DAY,'%Y-%m-%d') AND DATE_FORMAT(NOW()+INTERVAL 15 DAY,'%Y-%m-%d')))
     1830    AND (LENGTH('$target')>1 OR (d.post_id IS NULL OR DATE_FORMAT(d.meta_value,'%Y-%m-%d') BETWEEN DATE_FORMAT(NOW()-INTERVAL 14 DAY,'%Y-%m-%d') AND DATE_FORMAT(NOW()+INTERVAL 15 DAY,'%Y-%m-%d')))
    18311831    AND o.post_status NOT IN ('wc-cancelled','trash')
    18321832    $max_id_condition
  • pb-shipping/tags/5.0.22/pb_queue.php

    r3417629 r3429280  
    245245        <meta name='robots' content='noindex,nofollow'>
    246246        <?php $last_change=(int)get_option('pb_refresh',0); ?>
    247         <script>pb_last_change=<?php echo $last_change;?>;setInterval(()=>{fetch(ajaxurl+'?action=pb_latest_order').then(r=>r.text()).then(t=>{if(+t!=pb_last_change)location.reload()})},300000);</script>
     247        <script>pb_last_change=<?php echo $last_change;?>;setInterval(()=>{fetch(ajaxurl+'?action=pb_latest_order').then(r=>r.text()).then(t=>{if(+t!=pb_last_change){document.body.style.transition='opacity .25s';document.body.style.opacity='.2';setTimeout(()=>location.reload(),250)}})},300000);</script>
    248248        <script type='text/javascript'>
    249249          function pb_qicon(msg=0) {
  • pb-shipping/tags/5.0.22/readme.txt

    r3417629 r3429280  
    66Requires at least: 4.6
    77Tested up to: 6.9
    8 Stable tag: 5.0.21
     8Stable tag: 5.0.22
    99
    1010A streamlined US shipping solution for WooCommerce and Pitney Bowes.
     
    3737
    3838== Changelog ==
     39= 5.0.22 = * Improvements to queue and fetch tracking status
    3940= 5.0.21 = * Queue updates and aesthetic improvements
    4041= 5.0.20 = * Variation meta improvements to queue and ship screen.
Note: See TracChangeset for help on using the changeset viewer.