- 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>
50 lines
1.8 KiB
PHP
Executable File
50 lines
1.8 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Thrive Themes - https://thrivethemes.com
|
|
*
|
|
* @package thrive-visual-editor
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Silence is golden!
|
|
}
|
|
$name_placeholder = '<span class="element-name"></span>';
|
|
?>
|
|
|
|
<div class="tcb-modal-tabs flex-center space-between">
|
|
<span class="tcb-modal-title ml-10">
|
|
<?php if ( defined( 'TVE_STAGING_TEMPLATES' ) && TVE_STAGING_TEMPLATES ) : ?>
|
|
<span style="color: #810000"><?php echo esc_html__( 'Warning! The templates listed here are only used for testing purposes', 'thrive-cb' ); ?></span>
|
|
<?php else : ?>
|
|
<?php echo sprintf( esc_html( __( 'Choose %s Template', 'thrive-cb' ) ), $name_placeholder ); ?>
|
|
<?php endif ?>
|
|
</span>
|
|
<span data-fn="clearCache" class="tcb-refresh mr-30 click flex-center">
|
|
<span class="mr-10"><?php tcb_icon( 'sync-regular' ); ?></span>
|
|
<span class="mr-10"><?php echo esc_html__( 'Refresh from cloud', 'thrive-cb' ); ?></span>
|
|
</span>
|
|
</div>
|
|
|
|
<div class="error-container tcb-absolute"></div>
|
|
<div class="warning-ct-change ml-0">
|
|
<div class="tcb-notification info-text">
|
|
<div class="tcb-warning-label"><?php echo esc_html__( 'Warning!', 'thrive-cb' ); ?></div>
|
|
<div class="tcb-notification-content"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="tve-templates-wrapper">
|
|
<div class="content-templates" id="cloud-templates"></div>
|
|
</div>
|
|
|
|
<div class="tcb-modal-footer">
|
|
<button type="button" class="justify-self-start tve-button medium tcb-modal-back grey" style="display: none"><?php echo esc_html__( 'Back', 'thrive-cb' ); ?></button>
|
|
<div class="tcb-confirmation-footer">
|
|
<span class="tcb-confirmation-message"><?php echo esc_html__( 'Please confirm that you want to replace this template', 'thrive-cb' ); ?></span>
|
|
<button type="button" class="tcb-right tve-button medium tcb-modal-save ml-25">
|
|
<?php echo esc_html__( 'Replace Template', 'thrive-cb' ); ?>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|