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 td_Connection $this */
?>
<div class="td-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-dash' ) ?>
</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-dash' ), '<a target="_blank" href="https://thrivethemes.com/support/">' . __( "click here", 'thrive-dash' ) . '</a>' ); ?>
</p>
<a class="td-retry" href="<?php echo TD_TTW_Update_Manager::get_instance()->get_admin_url(); ?>">
<?php echo __( 'Try again', 'thrive-dash' ) ?>
</a>
</div>
<div id="td-notification-box" class="td-error td-show">
<h3><?php echo __( 'Ooops!', 'thrive-dash' ) ?></h3>
<p><?php echo __( 'Something went wrong, cant connect to account.', 'thrive-dash' ) ?></p>
</div>

View File

@@ -0,0 +1,24 @@
<?php
/** @var TD_TTW_Connection $this */
/** @var string $login_url */
$login_url = TD_TTW_Connection::get_instance()->get_login_url();
?>
<div class="td-connect-screen">
<div>
<h2><?php echo __( 'Connect to ThriveThemes.com to receive updates.', 'thrive-dash' ) ?></h2>
<p><?php echo __( 'Click on the button below to be taken to Thrive Themes and simply log into your account to access product updates', 'thrive-dash' ) ?></p>
<p><?php echo __( 'Make sure that you use the same username and password that used when signing up at ThriveThemes.com', 'thrive-dash' ) ?></p>
<hr class="td-le-rule"/>
<a class="td-login" href="<?php echo $login_url; ?>">
<?php echo __( 'Log into my account', 'thrive-dash' ) ?>
</a>
<p>
<a href="http://help.thrivethemes.com/en/articles/4957014-having-trouble-logging-into-your-thrive-themes-account/"
target="_blank"><?php echo __( "I'm having difficulties.", 'thrive-dash' ) ?></a>
</p>
</div>
</div>