Page 1 of 1

Categories

PostPosted: 05 Mar 2017, 12:50
by capitald
Hi there, is it possible to remove the categories listing from the center if the footer between about us and contact us, as we don't need to use it in the layout of our website?

Our site for reference is www.unlimitedtech.co.nz

Thanks,

Damian

Re: Categories

PostPosted: 06 Mar 2017, 10:34
by andipas
The data can be edited in a file - protected/views/layouts/main.php

Code: Select all

            <li class="second-col">

                <div class="widget-block">
                    <h4><?php echo tc('Категории');?></h4>
                    <ul class="menu-categories page-text">
                        <?php foreach ($this->bottomCatalogCategories as $key => $item) :?>
                            <li><a href="<?php echo CatalogCategory::getCatIdUrl($item['id'], $item['title']); ?>"><?php echo CHtml::encode($item['title'].' ('.$item['count'].')'); ?></a></li>
                        <?php endforeach; ?>
                    </ul>
                </div>

            </li>

Re: Categories

PostPosted: 16 Mar 2017, 14:33
by stewartcristan
If it were possible to remove these links in the footer from within the Admin Control Panel.

Re: Categories

PostPosted: 19 Mar 2017, 18:49
by Xpycm
No. Only in protected/views/layouts/main.php file