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,38 @@
<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-visual-editor
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden
}
$attributes = tcb_editor()->lcns_attributes();
?>
<div class="tve-license-modal-content expired">
<img class="tve-license-icon"
src="<?php echo TVE_DASH_URL ?>/css/images/licensing/licensing-<?php echo $attributes['source'] ?>-expired@2x.webp"
alt="License icon"/>
<div>
<h3>
<?php echo sprintf( esc_html( __( 'Heads up! Your %s license has expired', 'thrive-cb' ) ), $attributes['product'] ); ?>
</h3>
<p><?php _e( 'An active license is needed to access your software and manage your content. Youll also get access to new features, updates, security improvements, templates and support.', 'thrive-cb' ); ?></p>
<p><?php _e( 'Your visitors can continue to access your website content.', 'thrive-cb' ); ?>
<p>
<?php echo __( "Doesn't sound right? Your license might need to be refreshed.", 'thrive-cb' ); ?>
<a href="<?php echo TD_TTW_User_Licenses::get_instance()->get_recheck_url(); ?>">
<?php echo __( 'Click here to refresh your license now.', 'thrive-cb' ) ?>
</a>
</p>
<div class="tve-license-buttons">
<button class="tve-button-empty"
onclick="window.open('https://help.thrivethemes.com/en/articles/8223498-what-happens-when-your-thrive-product-license-expires', '_blank')"><?php _e( 'Learn more', 'thrive-cb' ); ?></button>
<button class="tve-button-action"
onclick="window.open('<?php echo $attributes['link'] ?>', '_blank')"><?php _e( 'Renew now', 'thrive-cb' ); ?></button>
</div>
</div>
</div>