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,41 @@
<?php include TVE_DASH_PATH . '/templates/header.phtml'; ?>
<div class="tvd-breadcrumb coming-soon-nav">
<a href="<?php echo admin_url( 'admin.php?page=tve_dash_section' ); ?>" class="tvd-breadcrumb-back">
<?php echo __( 'Thrive Dashboard', 'thrive-dash' ); ?>
</a>
<span>
<?php echo __( 'Coming Soon', 'thrive-dash' ); ?>
</span>
</div>
<div class="tvd-wrap cs-content">
<div class="tvd-actions">
<h2>
<?php echo __( 'Enable "Coming Soon" mode', 'thrive-dash' ); ?>
</h2>
<p>
<?php echo __( 'If you activate this feature, you will be able to set up a "Coming Soon" page, that your visitors will be redirected to, while you build your website. However, the logged in users will still be able to see your website.', 'thrive-dash' ); ?>
<a class="learn-more-link" href="https://help.thrivethemes.com/en/articles/5366468-add-a-coming-soon-page-to-your-website" target="_blank">
<?php echo __( 'Learn more', 'thrive-dash' ); ?>
</a>
</p>
<div class="tvd-wrap space-between">
<div class="tvd-switch">
<label>
<?php echo __( 'ACTIVE', 'thrive-dash' ); ?>
<input type="checkbox" class="tvd-toggle-input" <?php checked( true, $coming_soon ); ?>>
<span class="tvd-lever"></span>
</label>
</div>
</div>
<div class="tvd-cs-page-selector"></div>
</div>
</div>
<div id="tvd-back-td" class="tvd-col tvd-m6">
<a href="<?php echo admin_url( 'admin.php?page=tve_dash_section' ); ?>" class="tvd-waves-effect tvd-waves-light tvd-btn-small tvd-btn-gray">
<?php echo __( 'Back To Dashboard', 'thrive-dash' ); ?>
</a>
</div>

View File

@@ -0,0 +1,18 @@
<div class="create-page-wrapper">
<p>
<?php echo __( 'Please keep in mind that activating the feature is not enough for the "Coming Soon" page to be visible. You will first have to set it up, using the field below.', 'thrive-dash' ); ?>
</p>
<div class="page-source-wrapper">
<button id="create-new-page" class="enable-state" data-enable="create">
<span class="tvd-icon-plus-circle enable-state" data-enable="create"></span>
<?php echo __( 'Create new page', 'thrive-dash' ); ?>
</button>
<div class="new-page-wrapper">
<input id="new-page-title" name="page-title" type="text" placeholder="Page title">
<div class="new-page-actions">
<button class="dismiss-new-page enable-state" data-enable="search"><?php echo __( 'Cancel', 'thrive-dash' ); ?></button>
<button class="add-new-page"><?php echo __( 'Add page', 'thrive-dash' ); ?></button>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,7 @@
<div class="delete-page-wrapper">
<span><?php echo __( 'Are you sure you want to remove this coming soon page?', 'thrive-dash' ); ?></span>
<div class="buttons-wrapper">
<button class="keep-page enable-state" data-enable="view"><?php echo __( 'Keep this page', 'thrive-dash' ); ?></button>
<button class="remove-page enable-state" data-enable="search"><?php echo __( 'Remove this page', 'thrive-dash' ); ?></button>
</div>
</div>

View File

@@ -0,0 +1,3 @@
<div class='select2-result-page clearfix'>
<div class='select2-result-page__title'><#= pageTitle #></div>
</div>

View File

@@ -0,0 +1,18 @@
<div class="search-page-wrapper">
<p>
<?php echo __( 'Please keep in mind that activating the feature is not enough for the "Coming Soon" page to be visible. You will first have to set it up, using the field below.', 'thrive-dash' ); ?>
</p>
<div class="page-source-wrapper">
<div class="page-source-search-wrapper">
<select class="page-source-select">
<option></option>
</select>
</div>
<div class="create-new-page-wrapper">
<button id="create-new-page" class="enable-state" data-enable="create">
<span class="tvd-icon-plus-circle enable-state" data-enable="create"></span>
<?php echo __( 'Create new page', 'thrive-dash' ); ?>
</button>
</div>
</div>
</div>

View File

@@ -0,0 +1,21 @@
<div class="view-page-wrapper">
<span class="page-title">
<#= pageName #>
</span>
<div class="page-options">
<a class="page-option option-view-page" target="_blank" href="<#= previewUrl #>">
<span class="tvd-icon-eye"></span>
<?php echo __( 'View', 'thrive-dash' ); ?>
</a>
<span class="tvd-sep"></span>
<a class="page-option option-edit-page" target="_blank" href="<#= editUrl #>">
<span class="tvd-icon-architect"></span>
<?php echo __( 'Edit with Thrive Architect', 'thrive-dash' ); ?>
</a>
<span class="tvd-sep"></span>
<button class="page-option option-remove-page enable-state" data-enable="delete" target="_blank">
<span class="tvd-icon-delete"></span>
<?php echo __( 'Remove page', 'thrive-dash' ); ?>
</button>
</div>
</div>