Dneiz
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] First dropdown not working (Safari only)Found a solution. It was not the plugin. It was a jQuery bug.
https://bugs.jqueryui.com/ticket/4363Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] First dropdown not working (Safari only)It is probably the plugin. It happens on a selected dropdown.
Forum: Themes and Templates
In reply to: Pagination not working after updating WordPress 4.4Thank you very much franzblog!!!!!!!!
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Using with PolylangHi vokshirg, did you solved your issue already?
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Populate the form after searchDId you find any solution for the follow up search?
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Using with PolylangThe Ajax version is showing the same results. So I see the dutch and english items.
The results should be only the products of the selected language.
Do i need to add an language query in functions?
Somehwere here?
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(); echo '<li>'.get_permalink().'</li>'; } echo $apiclass->ajax_pagination($arg['paged'],$query->max_num_pages, 4, $id); } else { echo 'no post found'; } /* Restore original Post Data */ wp_reset_postdata(); $results = ob_get_clean();Thanks!!
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Using with PolylangHii,
Thanks for your reply.
The plugin is working fine, but there is only an issue with the submit form.
For example.
The searchform is submitting to http://www.domain.com/results-hereIt should submit to http://www.domain.com/en/results-here (when english website is active)
Thats the whole problem.
The normal search of wordpress is working fine.
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Search Results Pagehttp://wordpress.org/support/topic/results-page?replies=3
It should work for the Ajax version as well. If not, build your results query within functions.php.
Forum: Plugins
In reply to: [Ajax WP Query Search Filter] Custom Search pageI tried your post, but is still not working.
I get this error:Parse error: syntax error, unexpected '<', expecting ')' in /xxxxxxxxxxx/public_html/wp-content/themes/smart/functions.php on line 55And this is the search result page:
add_filter('ajax_wpqsf_reoutput', 'customize_output', '', 4); function customize_output($results , $arg, $id, $getdata ){ // The Query $apiclass = new ajaxwpqsfclass(); $query = new WP_Query( $args ); ob_start(); $result = ''; // The Loop if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post(); echo '<li>'.get_permalink().'</li>'; } echo $apiclass->ajax_pagination(<code>$arg['paged']</code>,$query->max_num_pages, 4, $id); } else { echo 'no post found'; } /* Restore original Post Data */ wp_reset_postdata(); $results = ob_get_clean(); return $results; }Forum: Plugins
In reply to: [Ajax WP Query Search Filter] Custom Search pageHmm.. How can i fix this?
I just need to show the ‘€’ sign on my website. I doesnt matter if I use the AJAX or the normal edition.
Thank you!
Forum: Fixing WordPress
In reply to: Random page with contentThanks! it is working now!