ChrisHoward Posted November 5, 2005 Posted November 5, 2005 Hey, I want to show the category name in my page title, I've done it for my product pages using: <title><?php echo $products_name; ?> -<?php echo TITLE; ?></title> and tried this for the categories: <title><?php echo $category_name; ?> -<?php echo TITLE; ?></title> But had no luck? Any ideas? >_<
ChrisHoward Posted November 6, 2005 Author Posted November 6, 2005 I did it! Here are the steps: catalog/includes/classes/breadcrumbs.php Add this function: (Around line 24) function last() { $trail_size = sizeof($this->_trail); return $this->_trail[$trail_size-1]['title']; } Then in index.php at the title change it to this... <title><?php echo $breadcrumb->last(); ?> - <?php echo TITLE; ?></title> And voila! :D
Recommended Posts
Archived
This topic is now archived and is closed to further replies.