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,24 @@
<div class="field-description"><?php echo __( 'Choose your group:', 'thrive-cb' ) ?></div>
<# if (item.type == 'dropdown' || item.type == 'hidden' ) { #>
<select class="thrive-api-group-select tve-api-extra" name="group">
<# _.each( item.groups, function(group) { #>
<#= TVE.tpl( 'util/option', {value:group.id, selected: (selected_groups.indexOf(group.id) !== -1), text: group.name}) #>
<# } ) #>
</select>
<# } else { #>
<# _.each( item.groups, function(group) { #>
<#= TVE.tpl( 'util/input',
{ id:'thrive-group-checkbox-'+group.id,
'_class': 'thrive-api-group-select tve-api-extra',
name:'group',
value:group.id,
checked: (selected_groups.indexOf(group.id) !== -1),
'_type': ( item.type == 'checkboxes' ? 'checkbox' : item.type)
}) #>
<label class="thrive-api-group-select" for="thrive-group-checkbox-<#= group.id #>">
<#= group.name #>
</label>
<# } ) #>
<# } #>

View File

@@ -0,0 +1,8 @@
<div class="tve-password-strength-wrapper">
<div class="tve-password-strength tve-password-strength-0"></div>
<div class="tve-password-strength tve-password-strength-1"></div>
<div class="tve-password-strength tve-password-strength-2"></div>
<div class="tve-password-strength tve-password-strength-3"></div>
<span class="tve-password-strength-icon"></span>
<span class="tve-password-strength-text"></span>
</div>