Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Category Title?


ChrisHoward

Recommended Posts

Posted

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? >_<

Posted

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...