Files
roi-theme/wp-content/plugins/ajax-search-pro/backend/tabs/instance/frontend/generic.php
root a22573bf0b 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>
2025-11-03 21:04:30 -06:00

35 lines
1.6 KiB
PHP
Executable File

<span class="asp_legend_docs">
<a target="_blank" href="https://documentation.ajaxsearchpro.com/frontend-search-settings/generic-selectors"><span class="fa fa-book"></span>
<?php echo __('Documentation', 'ajax-search-pro'); ?>
</a>
</span>
<div class="item">
<?php
$o = new wpdreamsText("generic_filter_label", __('Generic filters label text', 'ajax-search-pro'), $sd['generic_filter_label']);
$params[$o->getName()] = $o->getData();
?>
</div>
<div class="item">
<div class="errorMsg hiddend" id="genericFilterErr">
<?php echo __('<strong>WARNING:</strong> These options are not recommended to be used together with the <strong>index table</strong> engine.<br>
You are seeing this message, because the Index Table engine is selected on the <strong>General Options</strong> panel.', 'ajax-search-pro'); ?>
</div>
<?php
$o = new wd_DraggableFields("frontend_fields", __('Generic filters', 'ajax-search-pro'), array(
"value"=>$sd['frontend_fields'],
"args" => array(
"show_checkboxes" => 1,
"show_display_mode" => 1,
"show_labels" => 1,
'fields' => array(
'exact' => __('Exact matches only', 'ajax-search-pro'),
'title' => __('Search in title', 'ajax-search-pro'),
'content' => __('Search in content', 'ajax-search-pro'),
'excerpt' => __('Search in excerpt', 'ajax-search-pro')
),
'checked' => array('title', 'content', 'excerpt')
)
));
$params[$o->getName()] = $o->getData();
?>
</div>