
Originally Posted by
palagio
Our developer installed the simple seo urls on our zen cart
www.clicknorder.co.uk but it doesn't seem to be working correctly,
Originally at first look the urls seem to be rewritten properly on the categories and products, but then when I click on a banner advert that has the old url it does not redirect to the new url, then when you click on the category via the nav bar it gives an error and brings up the old url of the category and says error not redirecting properly.
We have tried clearing the caches and emptied the links_aliases table again and turned Simple SEO back on but still seem to get errors.
Any help would be greatly appreciated
Regards
Navigation seems to be working correctly for me, but it looks like you are missing some code in your html_output.php.
Open your current includes/functions/html_output.php
- find the function zen_href_link
- find this line:
PHP Code:
global $request_type, $session_started, $http_domain, $https_domain;
Insert these lines below that line:
PHP Code:
//bof simple seo url
global $ssu;
if(is_object($ssu) && ($link = $ssu->ssu_link($page, $parameters, $connection, $add_session_id, $search_engine_safe, $static, $use_dir_ws_catalog))!= false) return $link;
//eof simple seo url
Bookmarks