Looks like I stumbled upon an issue. When I clicked on a filter for my posts, there was an error message “There is error here”.
After clearing the cache, and refreshing the page, the filter worked just fine. Where can I find the place to reword that phrasing, because it does seem to be a bit awkward.
I don’t mind the error, because I think it was just a nonce issue, after reading couple of posts, but I would just like to reword that error message.
Thanks!
]]>I have tried disabling all other plugins and having only this one running, but it is still causing the website to crash.
Any thoughts on what might be causing the conflict?
https://www.ads-software.com/plugins/ultimate-wp-query-search-filter/
]]>If it’s not currently supported, is there a way I can tweak the code to enable this feature?
Thanks
Jack
https://www.ads-software.com/plugins/ultimate-wp-query-search-filter/
]]>I’ve used this post to help build the spanish search.
Except I can’t find any documentation on creating a language selector for the search filter.
Currently my shortcode looks like:
<?php echo do_shortcode( ‘[ULWPQSF id=122 lang=”es=10125″]’ ); ?>
122 = english (default language)
10125 = spanish form
I am only able to view spanish excludable taxonomies when spanish is the current selected language in the dashboard, so I’m sure that has something to do with the results not displaying.
any help is much appreciated thanks!
https://www.ads-software.com/plugins/ultimate-wp-query-search-filter/
]]>add_filter('uwpqsf_result_tempt', 'customize_output', '', 4);
function customize_output($results , $arg, $id, $getdata ){
// The Query
$apiclass = new uwpqsfprocess();
$query = new WP_Query( $arg );
ob_start(); $result = '';
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();global $post;
echo '<li>'.get_permalink().'</li>';
}
echo $apiclass->ajax_pagination($arg['paged'],$query->max_num_pages, 4, $id, $getdata);
} else {
echo 'no post found';
}
/* Restore original Post Data */
wp_reset_postdata();
$results = ob_get_clean();
return $results;
}
but I noticed that there’s a problem with pagination: when clicking on page 2 some results are duplicates from page 1. Any hint?
https://www.ads-software.com/plugins/ultimate-wp-query-search-filter/
]]>https://www.ads-software.com/plugins/ultimate-wp-query-search-filter/
]]>How can I fix this?
Thanks!
]]>And thank you for this plugin that avoid me hours of work coding my own custom search forms
https://www.ads-software.com/plugins/ultimate-wp-query-search-filter/
]]>Can you give me a hook to customize the pagination on ajax result ?
I have to add bootstrap selectors to your plugin pagination.
I think this will be usefull for other users too.
Thank you
https://www.ads-software.com/plugins/ultimate-wp-query-search-filter/
]]>Is it possible to output the fields separately via the page template? I need to insert text in between each field, like this:
(dropdown) IN (dropdown)
Pretty basic, but I’ve been at it for 2 hours ha ha:)
Thanks in advance!!
https://www.ads-software.com/plugins/ultimate-wp-query-search-filter/
]]>