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,3 @@
<div class="notice notice-info is-dismissible">
<p><?php echo $error ?></p>
</div>

View File

@@ -0,0 +1,23 @@
<?
/** @var TPM_Connection $this */
?>
<div class="tpm-connect-screen">
<h1><?php echo __( 'There seems to be a problem' ) ?></h1>
<p>
<?php echo __( "We can't seem to connect to your ThriveThemes.com account. Usually this is because of some kind of restrictions with your hosting company.", Thrive_Product_Manager::T ) ?>
</p>
<p>
<?php echo sprintf( __( "Not to worry, %s to let us know about the issue and we'll quickly solve this problem for you", Thrive_Product_Manager::T ), '<a target="_blank" href="https://thrivethemes.com/forums/forum/account-and-presales-support/">' . __( "click here", Thrive_Product_Manager::T ) . '</a>' ); ?>
</p>
<a class="tpm-retry" href="<?php echo thrive_product_manager()->get_admin_url(); ?>">
<?php echo __( 'Try again', Thrive_Product_Manager::T ) ?>
</a>
</div>
<div id="tpm-notification-box" class="tpm-error tpm-show">
<h3><?php echo __( 'Ooops!', Thrive_Product_Manager::T ) ?></h3>
<p><?php echo __( 'Something went wrong, cant connect to account.', Thrive_Product_Manager::T ) ?></p>
</div>

View File

@@ -0,0 +1,25 @@
<?php
/** @var TPM_Connection $this */
/** @var string $login_url */
$login_url = $this->get_login_url();
?>
<div class="tpm-connect-screen">
<div>
<h2><?php echo __( 'Connect to ThriveThemes.com to access your product.', Thrive_Product_Manager::T ) ?></h2>
<p><?php echo __( 'Click on the button below to be taken to Thrive Themes and simply log into your account to install your product', Thrive_Product_Manager::T ) ?></p>
<p><?php echo __( 'Make sure that you use the same username and password that used when signing up at ThriveThemes.com', Thrive_Product_Manager::T ) ?></p>
<hr class="tpm-le-rule"/>
<a class="tpm-login" href="<?php echo $login_url; ?>">
<?php echo __( 'Log into my account', Thrive_Product_Manager::T ) ?>
</a>
<p>
<a href="https://thrivethemes.com/tkb_item/how-to-use-the-thrive-product-manager/"
target="_blank"><?php echo __( 'See how it works.', Thrive_Product_Manager::T ) ?></a>
</p>
</div>
</div>
<?php include thrive_product_manager()->path( 'inc/templates/debugger.phtml' ) ?>