Changeset 3472502
- Timestamp:
- 03/02/2026 09:05:41 AM (4 weeks ago)
- Location:
- rc-site-manager-optimization/trunk
- Files:
-
- 2 edited
-
rc-site-manager-optimization.php (modified) (7 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rc-site-manager-optimization/trunk/rc-site-manager-optimization.php
r3465880 r3472502 3 3 * Plugin Name: RC Site Manager & Optimization 4 4 * Description: All-in-one Wordpress manager: control WooCommerce, SEO, caching, media, and multilingual tools from one dashboard. 5 * Version: 2.3. 15 * Version: 2.3.3 6 6 * Author: Rocket Comunicazione 7 7 * Author URI: https://www.rocketcomunicazione.com … … 18 18 19 19 20 define('RC_SM_PLUGIN_VERSION', '2.3. 1');20 define('RC_SM_PLUGIN_VERSION', '2.3.3'); 21 21 22 22 define( 'RC_SM_SITE_URL', home_url() ); … … 50 50 define('RC_SM_TABLE_SETTINGS', $wpdb->prefix . 'rc_sm_tb_settings'); 51 51 define('RC_SM_TABLE_PREMIUM_ULTRA_SPEED', $wpdb->prefix . 'rc_sm_tb_premium_ultra_speed'); 52 define('RC_SM_TABLE_PREMIUM_CUSTOM_SOFTWARE', $wpdb->prefix . 'rc_sm_tb_premium_custom_software'); 52 53 53 54 if (RC_SM_SITE_URL === 'https://www.rocketcomunicazione.com') { … … 76 77 } 77 78 79 include plugin_dir_path(__FILE__) . 'premium/index.php'; 78 80 include plugin_dir_path(__FILE__) . 'premium/ultra_speed/index.php'; 81 include plugin_dir_path(__FILE__) . 'premium/custom_software_1/index.php'; 82 79 83 80 84 include plugin_dir_path(__FILE__) . 'settings/index.php'; … … 208 212 } 209 213 210 // Ultra Speed : accesso riservato solo a utenti specifici214 // Ultra Speed e Custom Software 1: accesso riservato solo a utenti specifici 211 215 $current_user = wp_get_current_user(); 212 216 $email = $current_user->user_email; 213 217 214 218 if (strpos($email, 'radames.dicembrino@') !== false || strpos($email, 'r.dicembrino@') !== false) { 219 215 220 add_submenu_page( 216 221 'rc_sm_dashboard', … … 221 226 'rc_sm_premium_ultra_speed_page' 222 227 ); 228 229 add_submenu_page( 230 'rc_sm_dashboard', 231 __('Custom Software 1', 'rc-site-manager-optimization'), 232 __('Custom Software 1', 'rc-site-manager-optimization'), 233 'manage_options', 234 'rc_sm_premium_custom_software_1', 235 'rc_sm_premium_custom_software_1_page' 236 ); 237 223 238 } 224 239 … … 299 314 )); 300 315 } 316 317 318 319 include plugin_dir_path(__FILE__) . 'includes/admin.php'; -
rc-site-manager-optimization/trunk/readme.txt
r3465880 r3472502 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.1 7 Stable tag: 2.3. 17 Stable tag: 2.3.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 160 160 == Changelog == 161 161 162 163 = 2.3.3 - March 2, 2026 = 164 * Minor bug fixes and improvement 165 166 = 2.3.2 - March 1, 2026 = 167 * Minor bug fixes and improvement 168 162 169 = 2.3.1 - February 20, 2026 = 163 * Changed .rc_sm_bs_col_align display from flow to contents170 * Minor bug fixes and improvement 164 171 165 172 = 2.3.0 - February 15, 2026 = … … 270 277 == Upgrade Notice == 271 278 279 = 2.3.3 - March 2, 2026 = 280 Minor bug fixes. 281 282 = 2.3.2 - March 1, 2026 = 283 Minor bug fixes. 284 272 285 = 2.3.1 - February 20, 2026 = 273 Changed .rc_sm_bs_col_align display from flow to contents.286 Minor bug fixes. 274 287 275 288 = 2.3.0 - February 15, 2026 =
Note: See TracChangeset
for help on using the changeset viewer.