- This topic has 5 replies, 3 voices, and was last updated 1 year, 7 months ago by
Tom.
-
AuthorPosts
-
June 1, 2019 at 3:19 am #916929
Paul
Good afternoon team,
Theme great, but I’m still having issues getting my search results to display how I want them too.
I came across a popular wordpress plugin called ‘Advanced Woo Search’, which gives a great search function for store-based websites.
Unfortunately, the main menu search function is not ‘compatible’ with the plugin, as it doesn’t seem to pick that search form up as a ‘standard search form’ for seamless integration with this plugin.
Are you able to make any tweaks to make your theme compatible with this plugin?
AND… are there any plans in the future to make the current search functionality ajax based?
Thanks,
PaulJune 1, 2019 at 7:03 am #917142Tom
Lead DeveloperLead DeveloperHi there,
I’m not sure if it’s possible to integrate their plugin with another search form on the page. Do they have any instructions on integrating their plugin with custom search fields? If so, we might be able to get it to work.
Let me know 🙂
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentJune 21, 2019 at 3:00 am #936711Paul
Hi Tom,
This is taken from the plugin settings:
In case you need to add plugin search form on your website, you can do it in several ways:
1. Enable a “Seamless integration” option ( may not work with some themes )
2. Add search form using shortcode [aws_search_form]
3. Add search form as widget for one of your theme widget areas. Go to Appearance -> Widgets and drag&drop AWS Widget to one of your widget areas
4. Add PHP code to the necessary files of your theme: <?php if ( function_exists( ‘aws_get_search_form’ ) ) { aws_get_search_form(); } ?>Does that help you in any way?
Thanks,
PaulJune 21, 2019 at 7:37 am #937074David
StaffCustomer SupportHi there,
i couldn’t see any way of integrating this plugin, their seemless integration applies to the WP Search widget / get_search_form() function.
I helped another user create a similar layout as the nav search with a 3rd party search widget – could help do the same if you’re interested
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/June 21, 2019 at 7:40 am #937077Paul
Hi David,
Not to worry about it. Thanks for looking anyway. I’d ideally like to have the main search function ajax enabled. Hopefully in the future something like this can be integrated…?
Regards,
PaulJune 21, 2019 at 1:31 pm #937424Tom
Lead DeveloperLead DeveloperIt’s a long shot, but I wonder if this function will help?:
add_filter( 'generate_navigation_search_output', function( $form ) { return apply_filters( 'get_search_form', $form ); } );
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-development -
AuthorPosts
- You must be logged in to reply to this topic.