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,21 @@
<div class="tvd-col tvd-s4">
<div class="tvd-card tvd-white tvd-small tvd-valign-wrapper">
<div class="tvd-card-content tvd-center-align tvd-valign">
<span class="tvu-conversion-icon <#= item.get('trigger_options').trigger == ThriveUlt.util.trigger_type.conversion ? 'tvu-icon-envelope' : 'tvu-icon-ext-link' #>"></span>
<p>
<#= item.get('trigger_options').trigger == ThriveUlt.util.trigger_type.conversion ? 'User subscription' : 'Visit to conversion <br/> page' #>
</p>
</div>
</div>
</div>
<div class="tvd-col tvd-s4" <#= item.get('trigger_options').event == '' ? 'style="display: none"' : '' #>>
<div class="tvd-card tvd-white tvd-small tvd-valign-wrapper">
<div class="tvd-card-content tvd-center-align tvd-valign">
<span class="tvu-action-icon <#= item.get('trigger_options').trigger == ThriveUlt.util.trigger_type.conversion ? 'tvu-icon-signout' : 'tvu-icon-move' #>"></span>
<p>
<#= item.get('trigger_options').event == ThriveUlt.util.conversion_event.end ? 'End Campaign' : 'Move to another <br/> campaign' #>
</p>
</div>
</div>
</div>

View File

@@ -0,0 +1,38 @@
<div class="tvd-card tvd-white ">
<ul class="tvd-collection tvd-with-header tvd-collection-no-border">
<li class="tvd-collection-header tvu-event-title">
<h4><?php echo __( 'Conversion:', 'thrive-ult' ) ?>
<#= item.get('trigger_options').trigger == ThriveUlt.util.trigger_type.conversion ? 'TL Opt-in' : 'Visit to Conversion Page' #>
</h4>
<div class="tvu-conversion-action-btns tvd-inline-block">
<a class="tvu-bluegray-text tvu-btn-icon-small tvu-campaign-edit" href="javascript:void(0)">
<i class="tvd-icon-pencil"></i>
</a>
<a class="tvu-bluegray-text tvu-btn-icon-small tvu-campaign-delete" href="javascript:void(0)">
<i class="tvd-icon-trash-o tvd-left"></i>
</a>
</div>
</li>
<li class="tvd-collection-item tvu-conversion-event-box">
<p class="tvd-no-margin">
<span class="tvd-icon-chevron-right tvu-bluegray-text"></span>
<?php echo __( 'Ends current Campaign', 'thrive-ult' ) ?>
</p>
<# if(campaign) { #>
<p class="tvd-no-margin">
<span class="tvd-icon-chevron-right tvu-bluegray-text"></span>
<?php echo __( 'Moves to campaign ', 'thrive-ult' ) ?>
<a <# if(!campaign.get( 'designs' ) || !campaign.get( 'designs' ).size() || !campaign.checkDesignsTemplate() || !campaign.get('has_display_settings') || campaign.get( 'status' ) != ThriveUlt.util.status.running) { #> class="tvd-text-red tvd-relative" <# } #> href="#dashboard/campaign/<#= campaign.get( 'ID' ) #>">
<strong> <#= campaign.get( 'post_title' ) #> </strong>
<# if(!campaign.get( 'designs' ) || !campaign.get( 'designs' ).size() || !campaign.checkDesignsTemplate() || !campaign.get('has_display_settings')) { #>
<span class="tvd-tooltip-visible tvd-fixed-bottom tvd-tooltip-visible-big"><span><?php echo __( 'Tip: Complete the setup for this campaign, to enable this conversion event.', 'thrive-ult' ) ?></span></span>
<# } else if ( campaign.get( 'status' ) != ThriveUlt.util.status.running ) { #>
<span class="tvd-tooltip-visible tvd-fixed-bottom"><span><?php echo __( 'Tip: You need to start the linked campaign', 'thrive-ult' ) ?></span></span>
<# } #>
</a>
</p>
<# } #>
</li>
</ul>
</div>

View File

@@ -0,0 +1,4 @@
<input <#= end_id && end_id == item.get('ID') ? 'checked' : '' #> type="radio" id="tvu-campaign-conversion-<#= item.get('ID') #>" name="tvu-campaign-conversion" value="<#= item.get('ID') #>" class="tvu-campaign-conversion" />
<label for="tvu-campaign-conversion-<#= item.get('ID') #>" class="tvd-truncate">
<#= item.get('post_title') #>
</label>

View File

@@ -0,0 +1,9 @@
<h4><?php echo __( 'Select a campaign to move to or create a new evergreen campaign', 'thrive-ult' ) ?></h4>
<div id="tvu-campaign-move-wrapper" class="tvd-row"></div>
<# if(collection.length === 0) { #>
<p><?php echo __( "There are no Evergreen Campaigns to move to", 'thrive-ult' ); ?></p>
<# } #>
<a href="javascript:void(0)" id="tvu-add-evergreen-campaign" class="tvu-add-evergreen-campaign tvd-waves-effect tvd-waves-light tvd-btn tvd-btn-blue tvd-btn-small tvd-inline-block"><?php echo __( '+ Add New', 'thrive-ult' ) ?></a>
<div class="tvd-v-spacer"></div>

View File

@@ -0,0 +1,4 @@
<input <#= ids && typeof ids !== 'number' && ids.indexOf(item.get('ID')) > -1 ? 'checked' : '' #> type="checkbox" id="tvu-lead-conversion-<#= item.get('ID') #>" value="<#= item.get('ID') #>" class="tvu-lead-conversion" />
<label for="tvu-lead-conversion-<#= item.get('ID') #>" class="tvd-truncate">
<#= item.get('post_title') #>
</label>

View File

@@ -0,0 +1,22 @@
<# if(collection.length == 0) { #>
<div class="tvu-no-conversion-posts"><?php echo __( "No Lead Groups defined", 'thrive-ult' ); ?></div>
<# } else { #>
<h4><?php echo __( 'User subscribes to Lead Groups', 'thrive-ult' ) ?>:</h4>
<div class="tvu-conversion-leads-checkboxes tvd-row"></div>
<div class="tvd-v-spacer"></div>
<# } #>
<# if(thriveBoxes.length == 0) { #>
<div class="tvu-no-conversion-posts"><?php echo __( "No ThriveBoxes defined", 'thrive-ult' ); ?></div>
<# } else { #>
<h4><?php echo __( 'User subscribes to ThriveBoxes', 'thrive-ult' ) ?>:</h4>
<div class="tvu-conversion-thrivebox-checkboxes tvd-row"></div>
<# } #>
<# if(shortcodes.length == 0) { #>
<div class="tvu-no-conversion-posts"><?php echo __( "No Shortcodes defined", 'thrive-ult' ); ?></div>
<# } else { #>
<h4><?php echo __( 'User subscribes to Shortcodes', 'thrive-ult' ) ?>:</h4>
<div class="tvu-conversion-shortcodes-checkboxes tvd-row"></div>
<# } #>

View File

@@ -0,0 +1,6 @@
<h4><?php echo __( 'Visit to conversion page', 'thrive-ult' ) ?></h4>
<div class="tvd-v-spacer vs-half"></div>
<div class="tvd-input-field">
<input id="tvu-specific-url" type="text" value="" data-field="conversion_page">
<label for="tvu-specific-url"><?php echo __( 'Search for content on site', 'thrive-ult' ) ?></label>
</div>