View Single Post
  #6  
Old 10-23-2008, 02:03 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default Re: Product Title and CDSEO Pro

I wouldn't recommend this as global keywords should be put last as they are less relevant to the specific page.

You can accomplish this however, by:

1) Backup your database, these queries haven't been tested live and I take no accountability!

2) Run a query to remove the Company Name:

Code:
UPDATE wcm_cdseo set cdseoTitle = replace(cdseoTitle,' - Company Name','');

3) Run a query to add to the front of the title:

Code:
UPDATE `wcm_cdseo` SET `cdseoTitle` = CONCAT('Company Name - ',cdseoTitle);
Reply With Quote