edited to remove the code to fix issue with page titles. That is a separate issue and a simpler fix was provided by Journal theme support.
Thanks everyone for the code to fix this. There were still some other pages where I needed a fix, like recurring payments and address book, which needed the code in a different location. With some trial & error, I was able to find a location to insert the code given above on everything I could find that needed fixing. I'll compile all of my changes here:
Insert this code in all locations below:
Code: Select all
$data['text_empty'] = $this->language->get('text_empty');
In:
catalog/controller/account/download.php
catalog/controller/account/order.php (find first occurance of code only)
catalog/controller/account/reward.php
catalog/controller/account/transaction.php
catalog/controller/account/wishlist.php
catalog/controller/product/category.php
catalog/controller/product/compare.php
catalog/controller/product/manufacturer.php (find first occurance of code only)
catalog/controller/product/search.php
catalog/controller/product/special.php
BEFORE:
===========================================
In:
catalog/controller/account/address.php
BEFORE
===========================================
In:
catalog/controller/account/recurring.php
AFTER
Code: Select all
$this->document->setTitle($this->language->get('heading_title'));
===========================================
In:
catalog/controller/account/return.php
AFTER 1ST OCCURANCE (index function) OF
Code: Select all
$this->document->setTitle($this->language->get('heading_title'));
===========================================
In:
catalog/controller/information/contact.php
BEFORE:
Code: Select all
$data['continue'] = $this->url->link('common/home');
Don't forget to refresh the cache after making these changes.
That's all I've found,
Please mention any errors or other files that need fixing