
Originally Posted by
Zappa Aviaries
I did that and corrected the ebates thing but still no change. There are still http links to pages that I cannot find as they are in the template. This is one, <li><a href="http://www.zappasbirds.com/index.php?main_page=shopping_cart"><i class="fa fa-shopping-cart" title="Shopping Cart"></i>0 - $0.00</a></li>
Then there are these and this is just on the home page, <li class="minfo-links"><a href="http://www.zappasbirds.com/index.php?main_page=shippinginfo" class="minfo">Information</a>
<ul class="level2">
<li><a href="http://www.zappasbirds.com/index.php?main_page=shippinginfo">Customer Service</a>
<ul>
<li><a href="http://www.zappasbirds.com/index.php?main_page=about_us">About Us</a></li>
<li><a href="https://www.zappasbirds.com/index.php?main_page=login">Log In</a></li>
<li><a href="https://www.zappasbirds.com/index.php?main_page=create_account">Create Account</a></li>
<li><a href="http://www.zappasbirds.com/index.php?main_page=shippinginfo">Shipping & Returns</a></li>
<li><a href="http://www.zappasbirds.com/index.php?main_page=privacy">Privacy Notice</a></li>
<li><a href="http://www.zappasbirds.com/index.php?main_page=conditions">Conditions of Use</a></li>
</ul>
</li>
<li><a href="http://www.zappasbirds.com/index.php?main_page=site_map">General Info</a>
<ul>
<li><a href="http://www.zappasbirds.com/index.php?main_page=site_map">Site Map</a></li>
<li><a href="http://www.zappasbirds.com/index.php?main_page=gv_faq">Gift Certificate FAQ</a></li>
<li><a href="http://www.zappasbirds.com/index.php?main_page=discount_coupon">Discount Coupons</a></li>
<li><a href="http://www.zappasbirds.com/index.php?main_page=unsubscribe">Newsletter Unsubscribe</a></li>
</ul>
</li>
<li><a href="http://www.zappasbirds.com/index.php?main_page=site_map">Useful Links</a>
<ul>
Then this one is the link associated with my logo in the header. Which all I did was edit the file with the new logo name and change the sizes. I didn't add the link, the template did.
<!--bof-branding display-->
<div id="logoWrapper">
<div id="logo"><a href="http://www.zappasbirds.com/"><img src="includes/templates/westminster_new/images/lglogo.jpg" alt="Zappa Aviaries" title=" Zappa Aviaries " width="850" height="175" /></a> </div>
But the http calls go on and on.
I just checked your home page and there is no ssl problem. It was your hard coded http image that you added and not a template problem.
This is not a problem with the template. If you check the code used to call your logo, for example, against the default code in 1.5.4 template default's header file you will see that they are the same.
template default:
Code:
<div id="logoWrapper">
<div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>
westminster new:
Code:
<div id="logoWrapper">
<div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?>
</div>
Thanks,
Anne
Bookmarks