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,36 @@
<div class="item">
<?php
$o = new wpdreamsYesNo("frontend_show_suggestions", __('Show the Suggested phrases?', 'ajax-search-pro'), $sd['frontend_show_suggestions']);
$params[$o->getName()] = $o->getData();
?>
<p class="descMsg">
<?php echo __('Will show the "Try these" as seen on the demo.', 'ajax-search-pro'); ?>
</p>
</div>
<div wd-disable-on="frontend_show_suggestions:0">
<div class="item item-flex-nogrow item-conditional">
<?php
$o = new wpdreamsText("frontend_suggestions_text", __('Suggestion text', 'ajax-search-pro'), $sd['frontend_suggestions_text']);
$params[$o->getName()] = $o->getData();
?>
<?php
$o = new wpdreamsColorPicker("frontend_suggestions_text_color", __(' color ', 'ajax-search-pro'), $sd['frontend_suggestions_text_color']);
$params[$o->getName()] = $o->getData();
?>
</div>
<div class="item">
<?php
$o = new wd_TextareaExpandable("frontend_suggestions_keywords", __('Keywords', 'ajax-search-pro'), $sd['frontend_suggestions_keywords']);
$params[$o->getName()] = $o->getData();
?>
<p class="descMsg">
<?php echo __('Comma separated!', 'ajax-search-pro'); ?>
</p>
</div>
<div class="item">
<?php
$o = new wpdreamsColorPicker("frontend_suggestions_keywords_color", __('Keywords color ', 'ajax-search-pro'), $sd['frontend_suggestions_keywords_color']);
$params[$o->getName()] = $o->getData();
?>
</div>
</div>