X7ROOT File Manager
Current Path:
/home/hamdjcne/public_html/wp-content/themes/hub/liquid/admin
home
/
hamdjcne
/
public_html
/
wp-content
/
themes
/
hub
/
liquid
/
admin
/
ðŸ“
..
📄
index.php
(26 B)
📄
liquid-admin-about.php
(1.02 KB)
📄
liquid-admin-changelog.php
(887 B)
📄
liquid-admin-customizer.php
(878 B)
📄
liquid-admin-dashboard.php
(903 B)
📄
liquid-admin-elementor.php
(1.71 KB)
📄
liquid-admin-init.php
(16.95 KB)
📄
liquid-admin-page.php
(1.96 KB)
📄
liquid-admin-performance.php
(1017 B)
📄
liquid-admin-plugins.php
(903 B)
📄
liquid-admin-reset.php
(4.43 KB)
ðŸ“
updater
ðŸ“
views
Editing: liquid-admin-elementor.php
<?php /** * Liquid Themes Theme Framework * The Liquid_Admin_Dashboard base class */ if( !defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if ( !class_exists( 'Liquid_Elementor_Addons' ) && !defined( 'ELEMENTOR_VERSION' ) ){ return; } class Liqıid_Admin_Elementor_Settings extends Liquid_Admin_Page { /** * [__construct description] * @method __construct */ public function __construct() { $this->id = 'liquid-elementor'; $this->page_title = esc_html__( 'Site Settings', 'hub' ); $this->menu_title = esc_html__( 'Site Settings', 'hub' ); $this->parent = 'liquid'; $this->position = '45'; parent::__construct(); } /** * [display description] * @method display * @return [type] [description] */ public function display() { if ( $set_home = get_option('page_on_front') ){ if ( \Elementor\Plugin::$instance->documents->get( $set_home )->is_built_with_elementor() ) { wp_redirect(\Elementor\Plugin::$instance->documents->get( $set_home )->get_edit_url() . '&active-document=' . get_option('elementor_active_kit') ); } else { if ( $kit_id = get_option('elementor_active_kit') ){ wp_redirect(\Elementor\Plugin::$instance->documents->get( $kit_id )->get_edit_url()); } else { printf('<p>Cannot found Elementor Kit. Please create or import kit.</p>'); } } } else { if ( $kit_id = get_option('elementor_active_kit') ){ wp_redirect(\Elementor\Plugin::$instance->documents->get( $kit_id )->get_edit_url()); } else { printf('<p>Cannot found Elementor Kit. Please create or import kit.</p>'); } } } /** * [save description] * @method save * @return [type] [description] */ public function save() { } } new Liqıid_Admin_Elementor_Settings;
Upload File
Create Folder