Commit inicial - WordPress Análisis de Precios Unitarios

- 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>
This commit is contained in:
root
2025-11-03 21:04:30 -06:00
commit a22573bf0b
24068 changed files with 4993111 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-visual-editor
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
?>
<div class="tcb-logo-image-tooltip">
<div class="tcb-logo-image-tooltip-inner" style="background-image: url( <#= this.model.get( 'src' ) #>);"></div>
</div>
<div class="tcb-logo-cell">
<button class="tcb-logo-preview click"
data-id="<#= this.model.get( 'id' ) #>"
style="background-image: url( <#= this.model.get( 'src' ) #>);">
</button>
<span class="tcb-logo-name"><#= this.model.get( 'name' ) #></span>
</div>
<div class="tcb-logo-controls">
<div class="tcb-logo-change tcb-logo-button click" data-fn="openMediaLibrary" data-id="<#= this.model.get( 'id' ) #>">
<?php tcb_icon( 'exchange-regular' ); ?>
</div>
<div class="tcb-logo-dots click" data-fn="showOptionsTooltip">
<?php tcb_icon( 'three-dots' ); ?>
</div>
</div>

View File

@@ -0,0 +1,6 @@
<div class="click tcb-tooltip-row" data-fn="renameHandler">
<?php echo __( 'Rename', 'thrive-cb' ); ?>
</div>
<div class="click tcb-tooltip-row" data-fn="deleteLogo">
<?php echo __( 'Delete', 'thrive-cb' ); ?>
</div>