I cannot get the link back url set correctly to bring back any results when I enter a search term into the search box. My wordpress site just returns the standard "It seems we can’t find what you’re looking for" page... I have a feeling that it is because I am not understanding the way to set the path on my link back url to point to my page.
My wordpress search page comes up and the zoom search form appears just fine, just no results page when I perform a search.
Following are the particulars of my file structure and the files that I am using, and my main two questions will follow.
1. Wordpress is installed in the root of my site.
2. Here are Urls and Paths to the various files I am working with.
3. search.php has not been modified in any way.
4. I have disabled charset enforcing on search script in the advanced tab of configuration.
5. This is the content of my template page, search_page.php, which is used to produce the "http://www.mysite/price-search" page.
6. This is the content of my search_template.html page.
I had this all going fine when I had it installed on a self published site in our server. Now that I have moved to a Wordpress setup, I am having trouble catching on the the path or url structures I need to use.
My wordpress search page comes up and the zoom search form appears just fine, just no results page when I perform a search.
Following are the particulars of my file structure and the files that I am using, and my main two questions will follow.
1. Wordpress is installed in the root of my site.
2. Here are Urls and Paths to the various files I am working with.
a. http://www.mysite.com/price-search (the Url to the search page that I made in my wordpress pages)
b. /mfg_oldSite/wp-content/themes/bootstrap-child/dealer/priceSearch/search.php (Path to the zoom search.php file)
c. /mfg_oldSite/wp-content/themes/bootstrap-child/dealer/priceSearch/search_template.html (Path to the zoom search_template.html file)
d. /mfg_oldSite/wp-content/themes/bootstrap-child/templates/search_page.php (Path to the wordpress template for my search page in wordpress)
b. /mfg_oldSite/wp-content/themes/bootstrap-child/dealer/priceSearch/search.php (Path to the zoom search.php file)
c. /mfg_oldSite/wp-content/themes/bootstrap-child/dealer/priceSearch/search_template.html (Path to the zoom search_template.html file)
d. /mfg_oldSite/wp-content/themes/bootstrap-child/templates/search_page.php (Path to the wordpress template for my search page in wordpress)
3. search.php has not been modified in any way.
4. I have disabled charset enforcing on search script in the advanced tab of configuration.
5. This is the content of my template page, search_page.php, which is used to produce the "http://www.mysite/price-search" page.
PHP Code:
get_header(); ?>
<section id="primary" class="span12">
<?php include_once('wp-content/themes/bootstrap-child/dealer/priceSearch/search.php'); ?> <!--This my include code-->
</section><!-- #primary -->
<?php
get_footer();
HTML Code:
<header class="row-fluid section-margin-bottom-40"> <div class="span10 offset2"> <h1 class="homepageH1 title paragraph">Welcome to the Price Search Page</h1> </div> </header> <section class="row-fluid section-margin-bottom-40"> <div class="span10 offset2"> <!--ZOOMSEARCH--> </div> </section>
- Does my link back url need to point to my base template page, search_page.php, or to the page that shows my search form on the site, which is has the slug "price-search"?
- Depending on which I should use, what path or url do I enter into the back link url spot in the configuration? I have tried all sort of comginations and none have brought back any results.
I had this all going fine when I had it installed on a self published site in our server. Now that I have moved to a Wordpress setup, I am having trouble catching on the the path or url structures I need to use.
Comment