hello see this link
https://search.yahooapis.com/WebSearchService/V1/relatedSuggestion?appid=$yahooappid&query=$s&results=5&output=php
can you update your plugin to use the good api ?
??
]]>This code works:
<?php if ( function_exists(‘related_searches’) ) { related_searches(); } ?>
However this doesn’t?
<?php if ( function_exists(‘spell_suggest’) ) { spell_suggest(); } ?>
Since Yahoo closed down their API service this plugin no longer works.
It’s returning the following error
Array ( [Error] => Array ( [Title] => The following errors were detected: [Message] => Array ( [0] => The service has been shut down. For further details, please see the Deprecated Services blog post https://developer.yahoo.com/blogs/ydn/posts/2010/08/api_updates_and_changes ) ) )
Read more -> https://developer.yahoo.com/blogs/ydn/posts/2010/08/api_updates_and_changes
]]>Hi,
When you are using WordPress in a different directory than /wordpress, such as https://www.example.com instead of https://www.example.com/wordpress the suggest links are not working. The links are leading the visitor to https://www.example.com which will result in an 404 error.
To resolve this:
– Go to wordpress/wp-admin/plugin-editor.php?file=search-suggest/search_suggest.php
– Change this: $wpurl = get_bloginfo(‘wpurl’); into this: $wpurl = get_bloginfo(‘url’); on line 19 and 46.
– Save the file.
Good luck and cheers.
Irian
]]>