I follow you up until "Translation: Add that variable - location -, to the title controller." Where is this code located, which file? I'm at catalog/controller, I assume it would be in the product.php page? However, on my product.php page, I only have the following similar code:zuhenry wrote:It is easy. Qphoria explained in a very easy way but it could be complicated if you are not good with mathematics or associations.
Qphoria says: "the 'variable' (location) is rarely used by any OC administrator"
Translation: Under the admin panel, use location to set the page title. Pretend 'location' means 'title'
Qphoria says: "globally change all controllers to... "
Translation: Add that variable - location -, to the title controller.
Before: $this->document->title = $product_info['name'];
After: $this->document->title = ($product_info['name'] . ' :: ' . $product_info['location']) ;
Thanks Qphoria !!
Code: Select all
$this->document->setTitle($product_info['name']);