Plugin Directory

Changeset 3470433


Ignore:
Timestamp:
02/26/2026 03:36:47 PM (4 weeks ago)
Author:
infinitehighwaysoftware
Message:

1.0.3 - plan changes reflect on wp admin

Location:
jasper-studio-buy-button-plus-connect-to-shopify
Files:
20 added
3 edited

Legend:

Unmodified
Added
Removed
  • jasper-studio-buy-button-plus-connect-to-shopify/trunk/includes/class-buy-button-plus-admin.php

    r3403462 r3470433  
    314314        $warning_dismissed = get_user_meta($user_id, 'buy_button_plus_warning_dismissed', true);
    315315       
    316         // Get cart validation status
     316        // Get cart validation status — re-validate live so plan changes are reflected immediately
    317317        $cart_id = get_option('buy_button_plus_cart_id', '');
    318         $cart_access_validated = get_option('buy_button_plus_cart_access_validated', false);
     318        $cart_access_validated = !empty($cart_id) ? $database->check_sitewide_cart_access($cart_id) : false;
     319        update_option('buy_button_plus_cart_access_validated', $cart_access_validated);
    319320       
    320321        // Check if we just added a button
  • jasper-studio-buy-button-plus-connect-to-shopify/trunk/jasper-studio-buy-button-plus-connect-to-shopify.php

    r3470410 r3470433  
    44 * Plugin URI: https://buy-button-plus.gitbook.io/buy-button-help-docs
    55 * Description: Sell Shopify products directly from your WordPress site.
    6  * Version: 1.0.2
     6 * Version: 1.0.3
    77 * Author: Arjo Studio
    88 * License: GPL v2 or later
     
    2020
    2121// Define plugin constants
    22 define('BUY_BUTTON_PLUS_VERSION', '1.0.1');
     22define('BUY_BUTTON_PLUS_VERSION', '1.0.3');
    2323define('BUY_BUTTON_PLUS_PLUGIN_URL', plugin_dir_url(__FILE__));
    2424define('BUY_BUTTON_PLUS_PLUGIN_PATH', plugin_dir_path(__FILE__));
  • jasper-studio-buy-button-plus-connect-to-shopify/trunk/readme.txt

    r3470410 r3470433  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.0.2
     7Stable tag: 1.0.3
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6363== Changelog ==
    6464
     65= 1.0.3 =
     66* Fix: Admin UI now reflects plan changes
     67
    6568= 1.0.1 =
    6669* Bug fixes for loading buy buttons
Note: See TracChangeset for help on using the changeset viewer.