You are here:  » price on title tag


price on title tag

Submitted by philstone on Tue, 2006-08-01 14:31 in

Hi dave

is there a simple way to include the Price on the title tag?

like "Product From £price at mysite.com"

Regards

phil

Submitted by support on Tue, 2006-08-01 14:39

Hi Phil,

The title tag on the product page is set in the following line of products.php

$header["title"] = $q;

At this point in the code; the product record is in the variable $rows[0], so if you wanted to include the price in the title, you would do something like this:

$header["title"] = $q." from ".$config_currencyHTML.$rows[0]["price"]." at mysite.com";

Cheers,
David.