Hi! I've looked around the forum for other posts regarding this, but cannot seem to find any so I am starting a new post.
I have my Wordpress site with Zoom embedded into a page template as well as in the header, as this picture shows;
Following this guide;
https://www.zoomsearchengine.com/zoo...wordpress.html
However, when enabling autocomplete, I get a weird response on all sites (including directly from ./zoom/search.php - it looks like it embeds the whole page inside the search form (and also includes the main site's css on this current site)
Before typing in search box (with autocomplete on):
After typing in search box:
The same behaviour also exists on the template page. I found out that when disabling the embedding script / Link back URL - autocomplete works fine on the /zoom/search.php page, but the embedded page does not function (naturally referring to your guide).
Another observation is when trying to include autocomplete in forms outside of the main page (i.e. in the header) following this "new" guide;
https://www.zoomsearchengine.com/for...-on-your-site=
Is that the (faulty) autocomplete stops working at all - no automatic word (or full page) dropdown.
So I guess what I first need to make work before trying the above guide of including autocomplete in forms i.e. in the header, is to make it work natively.
This is my setup;
wordpress installed at localhost/wordpress
zoom main folder at localhost/wordpress/zoom/
template search page at localhost/wordpress/search
Zoom Search page template;
Link back URL;
(Header form before attempt on autocomplete there as well
Anyone with a helping hand..?
I have my Wordpress site with Zoom embedded into a page template as well as in the header, as this picture shows;
Following this guide;
https://www.zoomsearchengine.com/zoo...wordpress.html
However, when enabling autocomplete, I get a weird response on all sites (including directly from ./zoom/search.php - it looks like it embeds the whole page inside the search form (and also includes the main site's css on this current site)
Before typing in search box (with autocomplete on):
After typing in search box:
The same behaviour also exists on the template page. I found out that when disabling the embedding script / Link back URL - autocomplete works fine on the /zoom/search.php page, but the embedded page does not function (naturally referring to your guide).
Another observation is when trying to include autocomplete in forms outside of the main page (i.e. in the header) following this "new" guide;
https://www.zoomsearchengine.com/for...-on-your-site=
Is that the (faulty) autocomplete stops working at all - no automatic word (or full page) dropdown.
So I guess what I first need to make work before trying the above guide of including autocomplete in forms i.e. in the header, is to make it work natively.
This is my setup;
wordpress installed at localhost/wordpress
zoom main folder at localhost/wordpress/zoom/
template search page at localhost/wordpress/search
Zoom Search page template;
Code:
get_header(); ?> <div id="primary" class="content-area"> <?php virtual("./zoom/search.php");?> </div><!-- #primary --> <?php get_footer(); ?>
Code:
$LinkBackURL = "http://localhost/wordpress/search/";
(Header form before attempt on autocomplete there as well
Code:
<form method="get" action="./zoom/search.php"> <input type="text" name="zoom_query" size="20" /> <input type="submit" value="Search" /> </form>
Comment