Changeset 3132702
- Timestamp:
- 08/08/2024 12:25:29 PM (8 months ago)
- Location:
- hive-support
- Files:
-
- 488 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified hive-support/trunk/hive-support.php ¶
r3131354 r3132702 1 1 <?php 2 3 2 /** 4 3 * Plugin Name: Hive Support 5 4 * Plugin URI: https://gethivesupport.com/features 6 5 * Description: One stop support solution for WordPress. 7 * Version: 1.0. 56 * Version: 1.0.6 8 7 * Author: Hive Support 9 8 * Author URI: https://gethivesupport.com … … 18 17 } 19 18 20 define('HIVE_LITE_SUPPORT_VERSION', '1.0. 5');19 define('HIVE_LITE_SUPPORT_VERSION', '1.0.6'); 21 20 define('HIVE_LITE_SUPPORT_VERSION_TYPE', 'LITE'); 22 21 defined('HIVE_LITE_SUPPORT_PATH') or define('HIVE_LITE_SUPPORT_PATH', plugin_dir_path(__FILE__)); … … 38 37 require __DIR__ . '/appsero/src/Client.php'; 39 38 } 39 40 if( hive_is_pro() && ( defined('HIVE_SUPPORT_VERSION') && HIVE_SUPPORT_VERSION < '1.1.0' ) ) { 41 42 function hs_admin_notice_pro_version_compatibility() { 43 $class = 'notice notice-error'; 44 $message = __( 'Please use Hive Support PRO version 1.1.0 or higher.', 'hive-support' ); 45 46 printf( '<div class="%1$s"><p style="font-size: 16px;">%2$s</p></div>', esc_attr( $class ), esc_html( $message ) ); 47 } 48 add_action( 'admin_notices', 'hs_admin_notice_pro_version_compatibility' ); 49 50 51 return; 52 } 53 40 54 41 55 /** -
TabularUnified hive-support/trunk/readme.txt ¶
r3131377 r3132702 6 6 Requires at least: 6.5 7 7 Tested up to: 6.6.1 8 Stable tag: 1.0. 58 Stable tag: 1.0.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 263 263 264 264 == Changelog == 265 = 1.0.6 = 266 - Added admin notice for pro version compatibility information 265 267 266 268 = 1.0.5 =
Note: See TracChangeset
for help on using the changeset viewer.