Changeset 3229855
- Timestamp:
- 01/27/2025 06:12:27 PM (14 months ago)
- Location:
- wp-administration-style/trunk
- Files:
-
- 6 added
- 4 deleted
- 4 edited
-
elementor-ad-eraser/elementor-ad-eraser.php (modified) (1 diff)
-
elementor-ad-eraser/includes/Core.php (added)
-
elementor-ad-eraser/includes/core.php (deleted)
-
elementor-ad-eraser/includes/is-gutenberg-active.php (deleted)
-
elementor-ad-eraser/includes/is_gutenberg_active.php (added)
-
elementor-ad-eraser/index.php (modified) (1 diff)
-
elementor-ad-eraser/static/css/admin-ui-elementor-pro-not-active.css (deleted)
-
elementor-ad-eraser/static/css/admin-ui.css (deleted)
-
elementor-ad-eraser/static/css/dashboard-no-elementor-pro.css (added)
-
elementor-ad-eraser/static/css/dashboard.css (added)
-
elementor-ad-eraser/static/js (added)
-
elementor-ad-eraser/static/js/dashboard-no-elementor-pro.js (added)
-
readme.txt (modified) (2 diffs)
-
wp-administration-style.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-administration-style/trunk/elementor-ad-eraser/elementor-ad-eraser.php
r3228476 r3229855 2 2 namespace Elementor_Ad_Eraser; 3 3 4 defined('ABSPATH') or die();4 defined('ABSPATH') || exit(); 5 5 6 6 /** 7 * Plugin Name: Elementor Ad Eraser 8 * Description: Removes intrusive ads from the Elementor interface for a cleaner, distraction-free experience. 9 * Version: 1.4.0 10 * Tested up to: 6.6.2 11 * Requires at least: 5.0.0 12 * Requires PHP: 7.4.33 13 * Author: babakfp 14 * Author URI: https://babakfp.ir 15 * License: GPLv3 or later 16 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 17 * Text Domain: elementor-ad-eraser 18 * Domain Path: /languages 7 * Plugin Name: Elementor Ad Eraser 8 * Description: Removes intrusive ads from the Elementor interface for a cleaner, distraction-free experience. 9 * Version: 1.4.1 10 * Requires PHP: 7.4 11 * Author: Babak Farkhoopak 12 * Author URI: https://babakfp.ir 13 * License: GPLv3 or later 14 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 15 * Text Domain: elementor-ad-eraser 16 * Domain Path: /languages 19 17 */ 20 18 21 define('ELEMENTOR_AD_ERASER', [ 22 'VERSION' => '1.4.0', 23 'PATH' => plugin_dir_path(__FILE__), 24 'URL' => plugin_dir_url(__FILE__), 25 ]); 19 class Globals { 20 public static $tag = 'elementor-ad-eraser'; 21 public static $version = '1.4.1'; 26 22 27 require_once ELEMENTOR_AD_ERASER['PATH'] . 'includes/core.php'; 23 public static function url($path) { 24 return plugin_dir_url(__FILE__) . $path; 25 } 26 27 public static function dir($path) { 28 return plugin_dir_path(__FILE__) . $path; 29 } 30 } 31 32 include_once ABSPATH . 'wp-admin/includes/plugin.php'; 33 34 if (is_plugin_active('elementor/elementor.php')) { 35 require Globals::dir('/includes/Core.php'); 36 } -
wp-administration-style/trunk/elementor-ad-eraser/index.php
r3227777 r3229855 1 1 <?php 2 defined('ABSPATH') or die();2 defined('ABSPATH') || exit(); -
wp-administration-style/trunk/readme.txt
r3228897 r3229855 1 1 === استایل مدیریت وردپرس === 2 Stable tag: 7.4. 13 Version: 7.4. 12 Stable tag: 7.4.2 3 Version: 7.4.2 4 4 Tested up to: 6.7 5 5 Requires at least: 5.0 … … 36 36 37 37 ایشالا اگه وردپرس ظاهرکاربری جدید رو منتشر کنه٬ رو اون کار میکنیم. 38 39 = 7.4.2 = 40 - اصلاحات مربوط به تبلیغات المنتور. 38 41 39 42 = 7.4.1 = -
wp-administration-style/trunk/wp-administration-style.php
r3228897 r3229855 7 7 * Plugin Name: استایل مدیریت وردپرس 8 8 * Description: رابط کاربری و تجربه کاربری داشبورد مدیریت وردپرس را بهبود میبخشد. 9 * Version: 7.4. 19 * Version: 7.4.2 10 10 * Tested up to: 6.7 11 11 * Requires at least: 5.0 … … 20 20 21 21 define('WP_ADMINISTRATION_STYLE', [ 22 'VERSION' => '7.4. 1',22 'VERSION' => '7.4.2', 23 23 'PATH' => plugin_dir_path(__FILE__), 24 24 'URL' => plugin_dir_url(__FILE__),
Note: See TracChangeset
for help on using the changeset viewer.