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,13 @@
<div class="tvd-ni-inbox-detail">
<div class="tvd-ni-single-header">
<span class="ni-go-back"><?php echo __( 'Notification', 'thrive-dash' ) ?></span>
<span class="tvd-ni-close"></span>
</div>
<div class="tvd-ni-detail-title">
<#= model.get('title') #>
</div>
<div class="tvd-ni-detail-data">
<#= model.get('info') #>
</div>
<span class="ni-go-back">&lt;&nbsp;<?php echo __( 'Back to the Notifications Lists', 'thrive-dash' ) ?></span>
</div>

View File

@@ -0,0 +1,6 @@
<div class="td-inbox-item td-inbox-item-<#= model.get('read') #>" data-id="<#= model.get('id') #>">
<span class="td-inbox-status-<#= model.get('read') #>"></span>
<span class="td-inbox-title"><#= model.get('title') #></span>
<span class="td-inbox-date"><#= model.get('date') #></span>
</div>

View File

@@ -0,0 +1,3 @@
<span class="tvd-ni-box-title"><?php echo __( 'Notifications', 'thrive-dash' ) ?></span>
<span class="tvd-ni-mark-read"><?php echo __( 'Mark all as read', 'thrive-dash' ) ?></span>
<span class="tvd-ni-close"></span>

View File

@@ -0,0 +1,16 @@
<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-dashboard
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
?>
<li class="ni-inbox-counter">
<a id="tvd-notifications-btn" href="javascript:void(0)" class="tvd-ni-notifications"></a>
<span class="ni-counter-holder" style="display: none;"></span>
</li>