Elio
Forum Replies Created
-
Forum: Plugins
In reply to: [SearchWP Modal Search Form] Search Scrolls to bottom of pageHi @jayala87,
the Avada theme does have a feature that automatically scrolls to anchor links. Because the Modal Form uses an anchor link to open the modal, Avada scrolls the page to the modal form which is at the bottom of the page HTML.
You may want to check with the Avada support how to prevent this feature on the Modal menu item.I hope this helps!
Forum: Plugins
In reply to: [SearchWP Modal Search Form] Adding Trigger to menu kills emoji supportHi @coresince84,
I have replicated the issue you reported and it is indeed a bug on the Modal form.
It will be addressed on a future release but in the mean time you can get the menu to work by adding this to your functions.php:https://gist.github.com/BrElio/8bd83ab3c7a371e4f5ec62030cdc825e
Please note that the code uses the mb_convert_encoding function which requires the PHP mbstring extension.
You may want to check with your hosting provider if that extension is available and active on the server before using the code.
I hope this helps!Forum: Plugins
In reply to: [SearchWP Modal Search Form] Styling the result pageHi @mstudioil,
yes you should customise the theme’s template used for the search results page.
The default template used by WordPress is called search.php and is located in the root folder of your theme.
Yet not all theme use that template, some use the index.php or a custom template which varies from theme to theme.
The theme developers should be able to help locating the template and/or customise it to add columns if possible.Thanks
Forum: Plugins
In reply to: [SearchWP Modal Search Form] Styling the result pageHi @mstudioil,
The search results are displayed by your theme. You can make any change to the template used by your theme to add columns.
Thanks
Forum: Plugins
In reply to: [SearchWP Modal Search Form] Compatibility with 6.1.1Hi @candlefind,
sorry for the late reply!
There are no issues with WordPress 6.1.1 that we aware of from our testing.You can update WordPress to version 6.1.1 without worries!
Forum: Plugins
In reply to: [SearchWP Live Ajax Search] Elementor Search Form not using Live Ajax SearchHi @numberxvriku,
this is the first time I see this error when triggering the Live Ajax Search using the code I linked.
Can you share what code you are using?Forum: Plugins
In reply to: [SearchWP Live Ajax Search] Does it execute short codes?Hi @wpdreamer,
the SearchWP Live Ajax Search uses a template to display the results.
This template can be customised as described in this article:https://searchwp.com/extensions/live-search/#customizing-results
The template contains a loop to render each result.
You can add any shortcode to the results using all available WordPress functions.I hope this helps but if you have any other question let me know!
- This reply was modified 3 years, 9 months ago by Elio. Reason: Corrected missing words
Forum: Plugins
In reply to: [SearchWP Live Ajax Search] SearchWP Live not working on results pageHi @jankotbbt,
The Live Ajax Search works out of the box with any search form that is generated using the get_search_form() WordPress function.
If you are using a custom search bar and you have access to the code you should add an extra data attribute to your input field like explained here:
https://searchwp.com/extensions/live-search/#usageI hope this helps but if you need further help let me know!
Forum: Plugins
In reply to: [SearchWP Modal Search Form] Scrolls automatic on bottom of the page …Hi Christoph,
thanks for sending us the solution you found!
I’ll post it here so other users can benefit from your solution.The issue was caused by the plugin “Page Scroll to id”
It can be fixed excluding the SearchWP Modal Link from the scroll to ID behaviour.Thanks
Forum: Plugins
In reply to: [SearchWP Live Ajax Search] Exclude rankmaths no index from search resultsHi @fabwintle,
the article you linked refers to SearchWP premium plugin.
If you have purchased SearchWP please open a support ticket from the plugin Support tab so we can help you from there.If you are just using the SearchWP Live Ajax Search without the Premium plugin,
the search would be run by WordPress so you would need to customise the WordPress query to exclude the posts.Thanks
Forum: Plugins
In reply to: [SearchWP Live Ajax Search] Elementor Search Form not using Live Ajax SearchHi @numberxvriku,
the Live Ajax Search works out of the box with search forms generated using the WordPress function get_search_form().
Elementor uses custom code to build the search bar so the Live Ajax Search cannot integrate with it directly.
For it to work with the Elementor search widget please add the following code to your functions.php:
https://gist.github.com/BrElio/0aa7b045becd4fd572b10bee4e1307f3Then add the class “swp-live-ajax-form” to the Elementor Search Form Widget.
That should do it!Forum: Plugins
In reply to: [SearchWP Modal Search Form] Search result showing only one resultHi @jasnick,
the number of search results per page is determined by WordPress and is set in WordPress > Settings > Reading > Blog pages show at most.
Please make sure that the number in this option is set to the number of results you want on the page.
I hope this helps!
Forum: Plugins
In reply to: [SearchWP Modal Search Form] Results pageHi @jasnick,
the SearchWP Modal only adds the search form to the site.
The search would still be performed by WordPress if SearchWP search engine is not installed and the search results are displayed by your theme.Asking the theme developer would be the best option here!
Forum: Plugins
In reply to: [SearchWP Modal Search Form] Menu group for Searchwp modal formHi @smartcafirms,
Please go to the Appearance > Menu page and on the top right click on Screen Options. Then make sure the SearchWP Modal Search Forms checkbox is ticked.
That should do it!Forum: Plugins
In reply to: [SearchWP Live Ajax Search] not show pages by idHi @guypeled,
if you are using the Live Ajax Search without the core SearchWP plugin, the search will be run using the default WordPress query_posts.
You can customise the query_posts arguments and exclude any page by ID adding the following code to your functions.php:
add_filter( 'searchwp_live_search_query_args', function( $args ) { $args['post__not_in'] = [123,234]; // List all posts IDs that should be excluded from the search. return $args; } );I hope this helps!