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,36 @@
<div class="tve-sp"></div>
<h6><?php echo esc_html__( 'Cycle day:', 'thrive-dash' ) ?></h6>
<div class="tvd-row tvd-collapse">
<div class="tvd-col tvd-s4">
<div class="tvd-input-field">
<input id="get-response_cycleday" type="text"
maxlength="3"
class="tve-api-extra tve_lightbox_input tve_lightbox_input_inline"
name="get-response_cycleday"
value="<?php echo ! empty( $data['cycleday'] ) ? esc_attr( $data['cycleday'] ) : '0' ?>"
size="40"/>
<p><?php echo esc_html__( 'Number of the cycle day(between 0 and 103)', 'thrive-dash' ) ?></p>
</div>
</div>
</div>
<script type="text/javascript">
(function ( $ ) {
var TVE_Content_Builder = TVE_Content_Builder || {};
if ( TVE_Content_Builder.auto_responder ) {
TVE_Content_Builder.auto_responder['get-response'] = TVE_Content_Builder.auto_responder['get-response'] || {};
TVE_Content_Builder.auto_responder['get-response'].validate = function () {
var $input = $( '#get-response_cycleday' ),
value = $input.val();
if ( isNaN( value ) || value < 0 || value > 103 ) {
alert( 'Invalid cycle day' );
return false;
}
return true;
}
}
})( jQuery );
</script>