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,29 @@
<div class="drop-panel panel-light">
<div class="link-option-panel">
<span class="label"><?php echo __( 'Custom Networks', 'thrive-cb' ) ?></span>
<div class="tcb-network-separator">
<hr>
</div>
<div class="tcb-network-icon-picker"></div>
<hr>
<div data-tab="static" class="static-option">
<label><?php echo __( 'Social Name', 'thrive-cb' ) ?></label>
<div>
<input class="tcb-network-name" type="text" class="text" value="">
</div>
<label><?php echo __( 'URL', 'thrive-cb' ) ?></label>
<div>
<input class="tcb-network-url" type="text" class="text" value="">
</div>
</div>
<div class="tcb-flex space-between mt-10">
<div class="elem-link-newtab"></div>
<div class="elem-link-nofollow"></div>
</div>
</div>
<div class="action-buttons control-grid">
<div data-fn="onCancel" class="click tve-button drop-panel-action btn-cancel"><?php echo __( 'Cancel', 'thrive-cb' ) ?></div>
<div data-fn="onApply" class="click tve-button drop-panel-action btn-apply"><?php echo __( 'Apply', 'thrive-cb' ) ?></div>
</div>
<div class="tcb-panel-arrow"></div>
</div>

View File

@@ -0,0 +1,15 @@
<div class="panel-text">
<?php echo __( 'Social Networks', 'thrive-cb' ); ?>
</div>
<div class="tve-style-options" style="padding-left: 10px !important;padding-right: 10px !important;">
<div class="tcb-network-container control-grid wrap">
<# _.each( networks, function ( network, k ) { #>
<span class="tcb-network-wrapper click change" data-fn="item_toggle" data-value="<#= k #>">
<#= parseInt(k) ? TVE.icon('link-variant2','svg', 'sidebar', 'tcb-preview-network'):TVE.icon(k,'svg', 'sidebar','tcb-preview-network') #>
<span class="tcb-network-label"> <#= network #> </span>
</span>
<# }); #>
</div>
<div class="tcb-custom-networks-container pb-20" style="width:100%"></div>
</div>

View File

@@ -0,0 +1,73 @@
<div class="drop-panel panel-light">
<div class="link-option-panel">
<div class="tcb-create-network-header">
<span class="label tcb-network-name-label"></span>
<span class="tcb-delete-network click" data-fn="showConfirm">
<?php tcb_icon( 'delete' ) ?>
<?php echo __( 'Delete', 'thrive-cb' ) ?>
</span>
</div>
<div class="tcb-network-separator">
<hr>
</div>
<div class="tcb-network-icon-picker pb-5"></div>
<hr>
<div class="tve-link-options flex space-between wrap">
<span class="label"><?php echo __( 'Social Link', 'thrive-cb' ) ?></span>
<div class="tve-link-tabs"></div>
<div class="tve-link-boxes">
<div data-tab="static" class="static-option">
<label><?php echo __( 'Social Name', 'thrive-cb' ) ?></label>
<div>
<input class="tcb-network-name" type="text" class="text" value="">
</div>
<label><?php echo __( 'URL', 'thrive-cb' ) ?></label>
<div>
<input class="tcb-network-url" type="text" class="text" value="">
</div>
</div>
<div data-tab="dynamic" class="dynamic-option">
<div class="tcb-dynamic-networks">
<div class="input mb-10">
<select class="change tcb-network-type" data-fn="changeNetworkType"></select>
</div>
<div class="input">
<select class="change tcb-networks" data-fn="changeNetwork"></select>
</div>
</div>
<!--TODO add a notice for author also -->
<div class="info-text grey-text">
<span>
<?php echo __( 'You can edit this link in the ', 'thrive-cb' ); ?>
<a href="<?php echo admin_url( 'admin.php?page=tve_dash_smart_site' ); ?>" target="_blank" class="blue-text">
<?php echo __( 'Smart Site Dashboard', 'thrive-cb' ); ?>
</a>
</span>
</div>
</div>
</div>
</div>
<div class="tcb-flex space-between mt-10">
<div class="elem-link-newtab"></div>
<div class="elem-link-nofollow"></div>
</div>
</div>
<div class="tcb-confirm-delete-network">
<div class="tcb-delete-title"><?php echo __( 'Delete Network', 'thrive-cb' ) ?></div>
<span class="tcb-delete-text"><?php echo __( 'Are you sure you want to delete the ', 'thrive-cb' ) ?></span>
<span class="tcb-delete-text tcb-network-name-label"></span>
<span class="tcb-delete-text"><?php echo __( ' network?', 'thrive-cb' ) ?></span>
</div>
<div class="action-buttons control-grid">
<div data-fn="onCancel" class="click tve-button drop-panel-action btn-cancel"><?php echo __( 'Cancel', 'thrive-cb' ) ?></div>
<div data-fn="onApply" class="click tve-button drop-panel-action btn-apply"><?php echo __( 'Apply', 'thrive-cb' ) ?></div>
</div>
<div class="action-buttons control-grid tcb-delete-confirm">
<div data-fn="hide" class="click tve-button drop-panel-action btn-cancel"><?php echo __( 'Cancel', 'thrive-cb' ) ?></div>
<div data-fn="deleteNetwork" class="click tve-button drop-panel-action btn-apply"><?php echo __( 'Delete', 'thrive-cb' ) ?></div>
</div>
<div class="tcb-panel-arrow"></div>
</div>