Forum Replies Created
-
AuthorPosts
-
October 10, 2018 at 4:48 am in reply to: We are having difficulty getting custom CSS to display on our site #1019746
Sure, thanks
October 10, 2018 at 4:25 am in reply to: We are having difficulty getting custom CSS to display on our site #1019729ok, thanks
October 9, 2018 at 3:40 pm in reply to: We are having difficulty getting custom CSS to display on our site #1019527What is CORS?
August 10, 2018 at 6:02 pm in reply to: increase the horizontal spacing between the main menu items #996113thanks
I’m glad I asked, thank you.
THANK YOU!
Quite frankly this is a strange result. I’ve been beating my head on this issue. I have not updated the theme to check. in the meantime I bit the bullet and purchased SearchWP, which is pretty impressive in its functionality and replaced the standard WP search and it has gone away. They also have SearchWP Live Ajax Search that can be installed. You can try it at my site.
It wouldn’t hurt to upgrade the theme to test, backup your stuff including custom css and tweaks and give it a shot.
- This reply was modified 6 years, 4 months ago by hostworks.
As an update, I followed your technote to make SearchWP the search engine and it made NO difference:
Use SearchWP instead of the standard search
SearchWP is an advanced search engine for WordPress. You can use it with Enfold without any additional configuration. If you want to use it with the ajax search function (preview search results when you click on the magnifier icon) then insert this code into the child theme functions.php file or into the enfold/functions.php file:add_filter( ‘avf_ajax_search_function’, ‘avia_init_searchwp’, 10, 4 );
function avia_init_searchwp( $function_name, $search_query, $search_parameters, $defaults ) {
$function_name = class_exists( ‘SearchWP’ ) ? ‘avia_searchwp_search’ : $function_name;
return $function_name;
}function avia_searchwp_search( $search_query, $search_parameters, $defaults ) {
$searchwp = SearchWP::instance();
$engine_name = ‘default’; // you can swap in your Supplemental Search Engine name
parse_str( $search_query, $output );
$search_string = isset( $output[‘s’] ) ? sanitize_text_field( urldecode( $output[‘s’] ) ) : ”;// limit the results to 5
function avia_searchwp_search_num_results() {
return 5;
}
add_filter( ‘searchwp_posts_per_page’, ‘avia_searchwp_search_num_results’ );$posts = $searchwp->search( $engine_name, $search_string );
return $posts;
}Awesome, thank you very much! That worked perfectly.
please try again
question
Any luck?
Again
This reply has been marked as private.Any thoughts on sorting on the year attribute?
Not really. We’ve already setup Year as an additional info item. It is not a filter, we just want to sort this category by the year attribute.
Thanks Victoria!
Any idea on how to have it sort by category?
I also wanted to extend the paging to 20 at a time rather than 10.
It’s displaying the little bubbles. it would be nice if the images were larger and sorted by category.
Would this work for the WooCommerce products?
Any thoughts here?
I forgot to say this is for WooCommerce. I want to remove the Sort by dropdown completely, thanks
http://cswpstage.hostworks.net/product-category/models/1-18-grand-prix-racecar-models/- This reply was modified 6 years, 6 months ago by hostworks. Reason: forgot URL
Thanks Mike, you Rock!
its working fine for me
Does anyone have ideas? the burger menu does not display on any tablet or mobile, but it is there if you press on the white area. The search icon is also illusive depending on the display format.
Thank you Victoria,
That fixed that website, but it did not work for this one:
The search icon overlays the logo
no, it is still available at http://new.atlasdg.com/
March 30, 2018 at 10:18 pm in reply to: Fatal error on manually updating to latest enfold theme #935462The theme update lost my burger menu on mobile & tablet
March 30, 2018 at 9:54 pm in reply to: Fatal error on manually updating to latest enfold theme #935457Fabulous Yigit, thank you. strange a I didn’t get an overwrite error and actually tried it twice. What file was it?
March 30, 2018 at 9:29 pm in reply to: Fatal error on manually updating to latest enfold theme #935449Here
-
AuthorPosts