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,14 @@
<span class="subtitle"><?php echo __( 'Exit Intent Settings', 'thrive-cb' ) ?></span>
<p><label class="tcb-checkbox"><input type="checkbox" class="change"<#=m.config && m.config.e_mobile ? ' checked' : ''#> data-fn="enable_mobile"> <span><?php echo __( 'Perform action on mobile devices', 'thrive-cb' ) ?></span></label>
</p>
<# if ( m.config && m.config.e_mobile ) { #>
<p><?php echo __( 'It is not possible to detect exit intent on a mobile device, so instead the selected action will be performed after a time delay. How long after page load before the action is performed on mobile devices ?', 'thrive-cb' ) ?></p>
<div class="control-grid tcb-relative">
<input type="range" value="<#=m.config.e_delay||10#>" min="1" max="300" id="exit-timer-slider" class="input fill mr-40 change" data-fn-input="slider_update" data-fn-change="config" data-config="e_delay" data-target="#exit-timer">
<input type="text" value="<#=m.config.e_delay||10#>" id="exit-timer" class="input tcb-text-center fixed-65 change slider-input" placeholder="SEC" data-fn-input="slider_update" data-fn-change="config" data-config="e_delay" data-target="#exit-timer-slider">
<span class="placeholder">
<?php echo __( 'SEC', 'thrive-cb' ) ?>
</span>
</div>
<# } #>

View File

@@ -0,0 +1,9 @@
<span class="subtitle"><?php echo __( 'Timer (duration after page load) Settings', 'thrive-cb' ) ?></span>
<p><?php echo __( 'How many seconds after page load should the event be triggered ?', 'thrive-cb' ) ?></p>
<div class="control-grid tcb-relative">
<input type="range" value="<#=m.config.t_delay||10#>" min="1" max="300" id="exit-timer-slider" class="input fill mr-40 change" data-fn-input="slider_update" data-fn-change="config" data-config="t_delay" data-target="#exit-timer">
<input type="text" value="<#=m.config.t_delay||10#>" id="exit-timer" class="input tcb-text-center fixed-65 change slider-input" data-fn-input="slider_update" data-fn-change="config" data-config="t_delay" data-target="#exit-timer-slider">
<span class="placeholder">
<?php echo __( 'SEC', 'thrive-cb' ) ?>
</span>
</div>