Files
roi-theme/wp-content/plugins/thrive-visual-editor/inc/backbone/controls/lead-generation/edit-option.phtml
root a22573bf0b 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>
2025-11-03 21:04:30 -06:00

23 lines
914 B
PHTML
Executable File

<div class="control-grid">
<div class="label"><?php echo __( 'Label', 'thrive-cb' ); ?></div>
<div class="input">
<input type="text" class="change input" data-fn="changeLabel" value="<#= this.model.get('label') #>">
</div>
</div>
<div class="control-grid">
<div class="label">
<label class="tcb-checkbox">
<input type="checkbox" <#= this.model.get('labelAsValue')?' checked' : ''#> class="change" data-fn="changeLabelAsValue"/>
<span><?php echo __( 'Use label as value', 'thrive-cb' ) ?></span>
</label>
</div>
</div>
<div class="control-grid tve-lg-option-value-input <#= this.model.get('labelAsValue')? 'tcb-hide':'' #>">
<div class="label"><?php echo __( 'Value', 'thrive-cb' ); ?></div>
<div class="input">
<input type="text" class="change input" data-fn="changeValue" value="<#= this.model.get('value') #>">
</div>
</div>
<div class="control-grid tve-edit-option-default-switch">
</div>