Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Missing breadcrumb on copied Brooklyn2014 themes Web Stores 3.2.4

James Pickard edited this page Mar 3, 2015 · 6 revisions

Some Web Stores that use a Brooklyn 2014 theme copy might have missing breadcrumb icons.

If your breadcrumb icon is missing on your product page you will need to manually update the images path.

Update breadcrumb image path

If you made a copy of the brooklyn2014 theme for customization follow the following step to update your column1.php and column2.php.

In themes/brooklyn2014copy/views/layouts/ replace:

'homeLink'=>CHtml::link(CHtml::image('/images/breadcrumbs_home.png'), array('/site/index')),

with:

'homeLink'=>CHtml::link(CHtml::image(Yii::app()->theme->baseUrl . '/css/images/breadcrumbs_home.png'), array('/site/index')),
Clone this wiki locally