I am currently calling brand related titles using 2 bits of code...
case "brand":
$banner["h2"] = translate("Golf shoes from ")." <strong>".$parts[1]."</strong> ";
break;
and...
case "brand":
$header["title"] = "Golf shoes from ".$parts[1];
break;
How do I change these both to read "BRAND Golf Shoes" instead of "Golf shoes from BRAND"
Thanks!
case "brand":
$banner["h2"] = translate("Golf shoes from ")." <strong>".$parts[1]."</strong> ";
break;
and...
case "brand":
$header["title"] = "Golf shoes from ".$parts[1];
break;
How do I change these both to read "BRAND Golf Shoes" instead of "Golf shoes from BRAND"
Thanks!