- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
69 lines
2.1 KiB
PHP
Executable File
69 lines
2.1 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Thrive Themes - https://thrivethemes.com
|
|
*
|
|
* @package thrive-visual-editor
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Silence is golden!
|
|
}
|
|
|
|
?>
|
|
<div id="tve-header-component" class="tve-component" data-view="HFSection" data-type="header">
|
|
<div class="section-select">
|
|
<div class="dropdown-header" data-prop="docked">
|
|
<?php echo esc_html__( 'Main Options', 'thrive-cb' ); ?>
|
|
<i></i>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<div class="tve-control mb-10" data-view="PageMap"></div>
|
|
|
|
<div class="tve-control mb-5" data-view="Visibility"></div>
|
|
|
|
<div class="tve-control mb-5 sep-top" data-view="StretchBackground"></div>
|
|
|
|
<div class="tve-control mb-5 sep-top" data-view="InheritContentSize"></div>
|
|
|
|
<div class="tve-control mb-5" data-view="ContentWidth"></div>
|
|
|
|
<div class="tve-control mt-5" data-view="StretchContent"></div>
|
|
|
|
<div class="pb-10 tcb-text-center">
|
|
<?php echo esc_html__( 'This is a header. You can edit it as a global element( it updates simultaneously in all places you used it) or change it with another saved header', 'thrive-cb' ); ?>
|
|
</div>
|
|
<hr>
|
|
<div class="row pb-10 header-actions">
|
|
<div class="col-xs-6">
|
|
<button class="tve-button blue long click" data-fn="editSection">
|
|
<?php echo esc_html__( 'Edit Header', 'thrive-cb' ); ?>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="col-xs-6">
|
|
<button class="tve-button grey long click" data-fn="placeholder_action">
|
|
<?php echo esc_html__( 'Change Header', 'thrive-cb' ); ?>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="action-group" style="display: none">
|
|
<div class="dropdown-header" data-prop="docked">
|
|
<?php echo esc_html__( 'Header Options', 'thrive-cb' ); ?>
|
|
<i></i>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<div class="tve-control" data-view="HeaderPosition"></div>
|
|
<hr>
|
|
<div class="tve-control" data-view="Height"></div>
|
|
<div class="tve-control" data-view="FullHeight"></div>
|
|
<hr>
|
|
<div class="tve-control" data-view="VerticalPosition"></div>
|
|
<div class="tve-control" data-view="StateSelect"></div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|