Plugin Directory

Changeset 3340650


Ignore:
Timestamp:
08/06/2025 09:52:06 PM (8 months ago)
Author:
peachpay
Message:

1.117.3

Location:
peachpay-for-woocommerce
Files:
868 added
4 edited

Legend:

Unmodified
Added
Removed
  • peachpay-for-woocommerce/trunk/changelog.txt

    r3340598 r3340650  
    11*** PeachPay for WooCommerce Changelog ***
     2
     32025-08-06 - version 1.117.3
     4* Analytics: Fixed abandoned carts banner image not displaying properly
     5* Settings: Updated WordPress version compatibility to 6.8.1
     6* UI: Improved asset URL generation consistency
    27
    382025-01-15 - version 1.117.2
  • peachpay-for-woocommerce/trunk/core/modules/analytics/admin/views/html-peachpay-abandoned-carts.php

    r3340598 r3340650  
    3030<div class='pp-analytics-promotional-banner' style='background: #f8f9fa; border-radius: 8px; padding: 20px; margin-bottom: 20px; text-align: center;'>
    3131    <a href='https://convert.convesio.com/register' target='_blank' rel='noopener noreferrer'>
    32         <img src='<?php echo esc_url( peachpay_url( 'assets/convertCartBannerSmall.png' ) ); ?>' alt='Recover abandoned carts and increase revenue' style='max-width: 100%; height: auto;' />
     32        <?php
     33        // Ensure we have the peachpay_url function available and the file exists
     34        if ( function_exists( 'peachpay_url' ) && file_exists( PEACHPAY_ABSPATH . 'assets/convertCartBannerSmall.png' ) ) {
     35            $banner_url = peachpay_url( 'assets/convertCartBannerSmall.png' );
     36        } else {
     37            // Fallback to plugins_url if peachpay_url is not available
     38            $banner_url = plugins_url( 'assets/convertCartBannerSmall.png', PEACHPAY_PLUGIN_FILE );
     39        }
     40        ?>
     41        <img src='<?php echo esc_url( $banner_url ); ?>' alt='Recover abandoned carts and increase revenue' style='max-width: 100%; height: auto;' />
    3342    </a>
    3443</div>
  • peachpay-for-woocommerce/trunk/peachpay.php

    r3340598 r3340650  
    44 * Plugin URI: https://woocommerce.com/products/peachpay
    55 * Description: Connect and manage all your payment methods, offer shoppers a beautiful Express Checkout, and reduce cart abandonment.
    6  * Version: 1.117.2
     6 * Version: 1.117.3
    77 * Text Domain: peachpay-for-woocommerce
    88 * Domain Path: /languages
    99 * Author: PeachPay, Inc.
    1010 * Author URI: https://peachpay.app
    11  * Tested up to: 6.6
     11 * Tested up to: 6.8.1
    1212 * WC requires at least: 5.0
    1313 * WC tested up to: 8.1.1
  • peachpay-for-woocommerce/trunk/readme.txt

    r3340598 r3340650  
    33Tags: woocommerce, checkout, payments, stripe, paypal, square, subscriptions, field editor, currency switcher, analytics, express checkout
    44Requires at least: 5.8
    5 Tested up to: 6.8
    6 Stable tag: 1.117.2
     5Tested up to: 6.8.1
     6Stable tag: 1.117.3
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    262262
    263263== Changelog ==
     264
     265### 1.117.3 (2025-08-06)
     266
     267#### Bug Fixes
     268- Analytics: Fixed abandoned carts banner image not displaying properly
     269- Settings: Updated WordPress version compatibility to 6.8.1
     270- UI: Improved asset URL generation consistency
    264271
    265272### 1.117.2 (2025-01-15)
Note: See TracChangeset for help on using the changeset viewer.