Plugin Directory

Changeset 3334365


Ignore:
Timestamp:
07/25/2025 08:50:26 PM (6 months ago)
Author:
wijnbergdevelopments
Message:

Small improvement to check if WooCommerce is active

Location:
tab-return-notifier
Files:
53 added
3 edited

Legend:

Unmodified
Added
Removed
  • tab-return-notifier/trunk/README.txt

    r3328084 r3334365  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 1.2.0
     6Stable tag: 1.2.1
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    1919- Global notification messages that appear when users switch to another tab
    2020- Per-post type and taxonomy override options
    21 - Built-in emoji picker for engaging notifications
     21- Built-in emoji picker for engaging notifications 🚀
    2222- Multiple animation styles (rotating and scrolling messages)
    2323- Customizable animation speed
     
    6464== Changelog ==
    6565
     66= 1.2.1 =
     67* Improved check if WooCommerce is active
     68
    6669= 1.2.0 =
    6770* Added documentation link
  • tab-return-notifier/trunk/includes/class-wdevs-tab-notifier-variables.php

    r3326704 r3334365  
    9999        $plugin_path = trailingslashit( WP_PLUGIN_DIR ) . 'woocommerce/woocommerce.php';
    100100
    101         return in_array( $plugin_path, wp_get_active_and_valid_plugins() )
    102                || in_array( $plugin_path, wp_get_active_network_plugins() );
     101        return in_array( $plugin_path, wp_get_active_and_valid_plugins());
    103102    }
    104103
  • tab-return-notifier/trunk/wdevs-tab-notifier.php

    r3328084 r3334365  
    1717 * Plugin URI:        https://products.wijnberg.dev
    1818 * Description:       Bring visitors back to your site with animated tab notifications triggered when they switch to another browser tab.
    19  * Version:           1.2.0
     19 * Version:           1.2.1
    2020 * Author:            Wijnberg Developments
    2121 * Author URI:        https://wijnberg.dev/
     
    3939 * Rename this for your plugin and update it as you release new versions.
    4040 */
    41 define( 'WDEVS_TAB_NOTIFIER_VERSION', '1.2.0' );
     41define( 'WDEVS_TAB_NOTIFIER_VERSION', '1.2.1' );
    4242
    4343/**
Note: See TracChangeset for help on using the changeset viewer.