Elio
Forum Replies Created
-
Forum: Plugins
In reply to: [SearchWP Live Ajax Search] Chatbot function and external results?Hi @james,
SearchWP and the Live Ajax Search cannot be used as a chatbot or connect to chatGPT.
Thanks
Forum: Plugins
In reply to: [SearchWP Live Ajax Search] FR – “Continue Typing” is not translatedForum: Plugins
In reply to: [SearchWP Live Ajax Search] Searching body text as well as titlesHi @sol0712,
SearchWP Live Ajax Search uses the default WordPress search.
If you want more control on your search results you should consider the SearchWP Pro plugin.Thanks
Forum: Plugins
In reply to: [SearchWP Live Ajax Search] Search inc livesearch not workingHi @crewcabins,
from your description, it seems you are using the SearchWP Pro plugin.
We cannot offer support for premium products here.
Please open a support ticket from the plugin’s Settings menu:https://searchwp.com/documentation/setup/tools/#support
and we will be happy to help you from there.
Thanks
Hi @papios7,
the Live Ajax Search is best adapted to default WordPress search bars like the SearchWP Widget or Search Block.
The dropdown is made to close if clicking anywhere on the main page.
It might not be best suited instead for search forms that open on the full page as in your case.Forum: Plugins
In reply to: [SearchWP Modal Search Form] Call to undefined method stdClass::get(Hi @prasunsen,
I just wanted to let you know that an update has just been released and it should prevent the error you reported.
Please let me know if after updating you still have any problem.Thanks
Forum: Plugins
In reply to: [SearchWP Modal Search Form] Call to undefined method stdClass::get(Hi @prasunsen,
thanks for the extra info!
The developer will take a look at it and as soon as I have some news I’ll let you know.Forum: Plugins
In reply to: [SearchWP Modal Search Form] Call to undefined method stdClass::get(Hi,
Can you please tell me how you added the Modal to the site?
As a menu item, a shortcode, a Gutenberg block or programmatically?The error seems caused by a missing class/file. Have you tried deleting and reinstalling the plugin?
Thanks
Forum: Plugins
In reply to: [SearchWP Modal Search Form] Call to undefined method stdClass::get(Hi @prasunsen,
We are not able to replicate the issue you reported.
Can you please tell me how the Modal form was added to the site and when that error appears. Is it in the frontend when the page loads?I would also suggest to delete the plugin and reinstall it again.
It might be possible that some files are missing for some reason on your copy.Thanks
Forum: Plugins
In reply to: [SearchWP Live Ajax Search] How order results in live result ajaxHi @oxisrock,
to order the results by post type first and post title after you can use this code:
add_filter( 'searchwp_live_search_query_args', function( $args ) { $args['orderby'] = array( 'post_type' => array( 'product', 'tapas', 'post', ), 'post_title' => 'ASC' ); return $args; } );That should do it!
Forum: Plugins
In reply to: [SearchWP Live Ajax Search] Fatal error receivedHi,
it seems your copy of the plugin might be missing a file.
Could you please try deactivating and deleting the plugin and install it again?Does the fixes the issue?
ThanksForum: Plugins
In reply to: [SearchWP Live Ajax Search] Fatal error receivedHi @spreadlovei,
I had a look at the site and from my tests both search bars are working as expected.
Could you please give me some more details on how to replicate the issue?About the error you get, it seems that Jetpack might be triggering it.
You may want to try disabling that plugin temporarily to see if the error disappears.Thanks
Forum: Plugins
In reply to: [SearchWP Modal Search Form] No results found messageHi @onedigitalfarm,
the SearchWP Modal Search Form doesn’t change the way your site displays the results.
This is still done by your theme. If you want to change the message on your search results page, you should customise the theme used on your site.
The default template used to display search results is called search.php and should be located at the root folder of your theme.
As not all themes use this default template you may want to check with the theme’s developers what template to customise in case the search.php template is not present.I hope this helps!
Forum: Plugins
In reply to: [SearchWP Live Ajax Search] Search not returning any results after upgradeHi @natashaelaine77,
I am sorry to hear we did not respond to your request!
Please send a email to [email protected] and we will make sure to get back to you as soon as possible.Thanks
Forum: Plugins
In reply to: [SearchWP Modal Search Form] Can’t override the templateHi @coopersita,
the default template cannot be overridden, instead you can create a custom template for example:
…/themes/[my-child-theme]/searchwp-modal-form/my-custom-template-name.php
You can then use the default template code as a starting point.
Once you have created your custom template you would see it listed in the plugins setting among other templates.
I hope this helps!