- 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>
68 lines
2.0 KiB
PHP
Executable File
68 lines
2.0 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Thrive Themes - https://thrivethemes.com
|
|
*
|
|
* @package thrive-visual-editor
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Silence is golden!
|
|
}
|
|
?>
|
|
<div id="tve-footer-component" class="tve-component" data-view="HFSection" data-type="footer">
|
|
<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 grey-text">
|
|
<?php echo esc_html__( 'This is a footer. You can edit it as a global element( it updates simultaneously in all places you used it ) or change it with another saved footer', 'thrive-cb' ); ?>
|
|
</div>
|
|
<hr>
|
|
<div class="row pb-10 footer-actions">
|
|
<div class="col-xs-6">
|
|
<button class="tve-button blue long click" data-fn="editSection">
|
|
<?php echo esc_html__( 'Edit Footer', '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 Footer', '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__( 'Footer Options', 'thrive-cb' ); ?>
|
|
<i></i>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<div class="tve-control" data-view="Height"></div>
|
|
<div class="tve-control" data-view="FullHeight"></div>
|
|
<hr>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="tve-control" data-view="VerticalPosition"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|