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,10 @@
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
?>
<button class="tcb-settings-modal-open-button click" data-fn="tve_ult_save_template">
<?php echo __( 'Save Template', 'thrive-ult' ); ?>
<?php tcb_icon( 'go-to' ); ?>
</button>

View File

@@ -0,0 +1,16 @@
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
?>
<?php if ( ! tve_ult_allow_cloud_templates() ): ?>
<div class="tcb-right-sidebar-white-box">
<button class="click green-ghost-button p-5 w-100" data-fn="tve_ult_reset_template">
<?php tcb_icon( 'undo-regular' ); ?>
<?php echo __( 'Reset to default content', 'thrive-ult' ); ?>
</button>
</div>
<hr class="mt-20" style="background: #dee8e8">
<?php endif; ?>

View File

@@ -0,0 +1,6 @@
<div class="thrv_wrapper tcb-row-empty tcb-elem-placeholder thrive_ultimatum_shortcode">
<span class="tcb-inline-placeholder-action with-icon">
<?php tcb_icon( 'ultimatum', false, 'editor' ) ?>
<?php echo __( 'Insert Ultimatum Countdown', 'thrive-ult') ?>
</span>
</div>

View File

@@ -0,0 +1,29 @@
<?php
/**
* Created by PhpStorm.
* User: Ovidiu
* Date: 7/20/2017
* Time: 5:46 PM
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden
}
?>
<div id="tve-ultimatum_countdown-component" class="tve-component" data-view="ultimatum_countdown">
<div class="dropdown-header" data-prop="docked">
<?php echo __( 'Ultimatum Countdown Options', 'thrive-ult'); ?>
<i></i>
</div>
<div class="dropdown-content">
<div class="row padding-top-10 middle-xs">
<div class="col-xs-12 tcb-text-center">
<button class="blue tve-button click" data-fn="change_countdown">
<?php echo __( 'Change Countdown', 'thrive-ult'); ?>
</button>
</div>
</div>
</div>
</div>