Category Page Title

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
kens
Lieutenant Commander (LCDR)
Lieutenant Commander (LCDR)
Posts: 84
Joined: Wed Apr 04, 2007 7:57 am
Location: West Palm Beach, FL
Contact:

Category Page Title

Post by kens » Fri Nov 19, 2010 11:10 pm

Hi all-

Thanks to some good posts here, I have been able to modify the title tags of my product pages. I now want to do the same with the category pages. Where are they? I can 't find a reference to page.title or any other relevant title spots on any of the category pages.

Any help would be appreciated.
FYI version is 7.04
Ken

User avatar
s_ismail
Commander (CMDR)
Commander (CMDR)
Posts: 162
Joined: Mon Nov 09, 2009 12:20 am
Contact:

Re: Category Page Title

Post by s_ismail » Mon Nov 22, 2010 2:52 am

You can change category title like this
Go to category.aspx page and locate this code

Code: Select all

 protected void Page_PreInit(object sender, EventArgs e)
    {
Replace with this code

Code: Select all

 protected void Page_PreInit(object sender, EventArgs e)
    {
        Page.Title = "Your_Page_Title";

Post Reply