Files
roi-theme/wp-content/plugins/thrive-visual-editor/inc/backbone/controls/responsive.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

50 lines
1.6 KiB
PHTML
Executable File

<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-visual-editor
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
?>
<div class="responsive-options action-group">
<div class="dropdown-header" data-prop="docked">
<span>
<?php echo __( 'Responsive', 'thrive-cb' ); ?>
</span>
<i></i>
</div>
<div class="dropdown-content">
<div class="row control-grid button-group-holder">
<div class="group-label label">
<span class="title"><?php echo __( 'Element visible on', 'thrive-cb' ); ?></span>
<a href="https://thrivethemes.com/tkb_item/how-to-use-the-responsive-element-setting/" target="_blank">
<span data-tooltip="<?php echo __( 'Learn more', 'thrive-cb' ) ?>" class="blue-text"><?php tcb_icon( 'info' ); ?></span>
</a>
</div>
<div class="tve-btn-group input">
<div class="tve-control tve-btn" data-device="desktop"></div>
<div class="tve-control tve-btn" data-device="tablet"></div>
<div class="tve-control tve-btn" data-device="mobile"></div>
</div>
</div>
<div class="responsive-text">
<span class="initial"><?php echo __( 'All devices', 'thrive-cb' ) ?></span>
</div>
<hr>
<div class="row">
<div class="col-xs-12 tcb-checkbox">
<input type="checkbox" class="change" data-fn="show_all_hidden" id="tcb-show-all-hidden"/>
<label for="tcb-show-all-hidden"><?php echo __( 'Show all hidden elements', 'thrive-cb' ); ?></label>
</div>
</div>
<div class="row pt-10">
<div class="col-xs-12">
</div>
</div>
</div>
</div>