[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
elementor-pro
/
modules
/
theme-builder
/
documents
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 archive-single-base.php
1,503 B
SET
[ EDIT ]
|
[ DEL ]
📄 archive.php
3,349 B
SET
[ EDIT ]
|
[ DEL ]
📄 error-404.php
1,586 B
SET
[ EDIT ]
|
[ DEL ]
📄 footer.php
1,345 B
SET
[ EDIT ]
|
[ DEL ]
📄 header-footer-base.php
1,518 B
SET
[ EDIT ]
|
[ DEL ]
📄 header.php
1,403 B
SET
[ EDIT ]
|
[ DEL ]
📄 search-results.php
1,815 B
SET
[ EDIT ]
|
[ DEL ]
📄 section.php
2,547 B
SET
[ EDIT ]
|
[ DEL ]
📄 single-base.php
5,313 B
SET
[ EDIT ]
|
[ DEL ]
📄 single-page.php
1,375 B
SET
[ EDIT ]
|
[ DEL ]
📄 single-post.php
1,318 B
SET
[ EDIT ]
|
[ DEL ]
📄 single.php
1,043 B
SET
[ EDIT ]
|
[ DEL ]
📄 theme-document.php
19,370 B
SET
[ EDIT ]
|
[ DEL ]
📄 theme-page-document.php
3,526 B
SET
[ EDIT ]
|
[ DEL ]
📄 theme-section-document.php
872 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: header-footer-base.php
<?php namespace ElementorPro\Modules\ThemeBuilder\Documents; use Elementor\Controls_Manager; use Elementor\Core\DocumentTypes\Post; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } abstract class Header_Footer_Base extends Theme_Section_Document { public function get_css_wrapper_selector() { return '.elementor-' . $this->get_main_id(); } protected static function get_editor_panel_categories() { // Move to top as active. $categories = [ 'theme-elements' => [ 'title' => esc_html__( 'Site', 'elementor-pro' ), 'active' => true, ], ]; return $categories + parent::get_editor_panel_categories(); } protected function register_controls() { parent::register_controls(); Post::register_style_controls( $this ); $this->update_control( 'section_page_style', [ 'label' => esc_html__( 'Style', 'elementor-pro' ), ] ); $this->start_injection( [ 'of' => 'margin', ] ); $this->add_control( 'hidden_header_footer_style_control', [ 'type' => Controls_Manager::HIDDEN, 'default' => 'hidden_control', 'selectors' => [ '.elementor-theme-builder-content-area' => 'height: 400px;', '.elementor-location-header:before, .elementor-location-footer:before' => 'content: ""; display: table; clear: both;', ], ] ); $this->end_injection(); } protected function get_remote_library_config() { $config = parent::get_remote_library_config(); $config['category'] = $this->get_name(); return $config; } }