[Plugin: Dave’s WordPress Live Search] View more results link broken if not on blog root page
-
The view more results link doesn’t work on any pages other than the blog home page. This is because the link is:
<a href="?s=' + resultsSearchTerm + '">View more results</a>
So if you are on a page called about, the link then becomes /about/?s=
The link needs to start from the blog root.
I think something like the following would do the trick:
<a href="<?php bloginfo('url'); ?>/?s=' + resultsSearchTerm + '">View more results</a>
https://www.ads-software.com/extend/plugins/daves-wordpress-live-search/
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘[Plugin: Dave’s WordPress Live Search] View more results link broken if not on blog root page’ is closed to new replies.