Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Переменный из common/header.tpl перенести product/category.tpl


Recommended Posts

Люди у меня такой вопрос как то можно перенести переменные из common/header.tpl в product/category.tpl точнее мне нужна переменная $breadcrumbs т.е. спетбар переменная ... в моем дизайне не как сделать это иначе, кроме как копированием и вставкой с помощью jquery, что ни есть хорошо ...

знаю PHP на хорошем уровне то так и не нашел как у них устроено в коде ... подскажите где что искать ...

Link to comment
Share on other sites


catalog/controller/product/category.php
добавить

$this->data["breadcrumbs"] = $this->document->breadcrumbs;
catalog/view/theme/default/template/product/category.tpl
в нужное место выводить:

<?php foreach ($breadcrumbs as $breadcrumb) { ?>
        <?php echo $breadcrumb['separator']; ?><a href="<?php echo str_replace('&', '&', $breadcrumb['href']); ?>"><?php echo $breadcrumb['text']; ?></a>
        <?php } ?>
catalog/view/theme/default/template/common/header.tpl
закомментить или удалить

<div id="breadcrumb">
        <?php foreach ($breadcrumbs as $breadcrumb) { ?>
        <?php echo $breadcrumb['separator']; ?><a href="<?php echo str_replace('&', '&', $breadcrumb['href']); ?>"><?php echo $breadcrumb['text']; ?></a>
        <?php } ?>
      </div>
  • +1 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.