- 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>
33 lines
1004 B
PHP
Executable File
33 lines
1004 B
PHP
Executable File
<?php
|
|
/**
|
|
* Thrive Themes - https://thrivethemes.com
|
|
*
|
|
* @package thrive-visual-editor
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Silence is golden!
|
|
}
|
|
|
|
?>
|
|
<div id="tve-symbol-component" class="tve-component" data-view="Symbol">
|
|
<div class="dropdown-header" data-prop="docked">
|
|
<?php echo esc_html__( 'Main Options', 'thrive-cb' ); ?>
|
|
<i></i>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<div class="pb-10 tcb-text-center">
|
|
<?php echo esc_html__( 'This is a symbol. You can edit it as a global element( it updates simultaneously all over the places you used it) or unlink it and you edit it as a regular element', 'thrive-cb' ); ?>
|
|
</div>
|
|
<hr>
|
|
<div class="control-grid">
|
|
<button class="tve-button orange click" data-fn="edit_symbol">
|
|
<?php echo esc_html__( 'Edit as Symbol ', 'thrive-cb' ); ?>
|
|
</button>
|
|
<button class="tve-button grey long click fixed-100" data-fn="unlink_symbol">
|
|
<?php echo esc_html__( 'Unlink', 'thrive-cb' ); ?>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|