Theme508 将分类描述位置修改到类表下面

来源:互联网 发布:淘宝账号快速升心 编辑:程序博客网 时间:2024/06/06 05:47

app\design\frontend\default\theme508\template\catalog\product\list.phtml

<?php $currentCategory = Mage::registry('current_category');if($_description=$currentCategory->getDescription()): ?>    <div class="category-description std">        <?php echo $_helper->categoryAttribute($currentCategory, $_description, 'description') ?>    </div><?php endif; ?>

原来的位于

app\design\frontend\default\theme508\template\catalog\category\view.phtml

<?php/** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE_AFL.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magentocommerce.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * * @category    design * @package     base_default * @copyright   Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com) * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0) */?><?php/** * Category view template * * @see Mage_Catalog_Block_Category_View */?><?php    $_helper    = $this->helper('catalog/output');    $_category  = $this->getCurrentCategory();    $_imgHtml   = '';    if ($_imgUrl = $_category->getImageUrl()) {        $_imgHtml = '<p class="category-image"><img src="'.$_imgUrl.'" alt="'.$this->htmlEscape($_category->getName()).'" title="'.$this->htmlEscape($_category->getName()).'" /></p>';        $_imgHtml = $_helper->categoryAttribute($_category, $_imgHtml, 'image');    }?><div class="page-title category-title">    <?php if($this->IsRssCatalogEnable() && $this->IsTopCategory()): ?>        <a href="<?php echo $this->getRssLink() ?>" class="link-rss"><?php echo $this->__('Subscribe to RSS Feed') ?></a>    <?php endif; ?>    <h1><?php echo $_helper->categoryAttribute($_category, $_category->getName(), 'name') ?></h1></div><?php echo $this->getMessagesBlock()->getGroupedHtml() ?><?php if($_imgUrl): ?>    <?php echo $_imgHtml ?><?php endif; ?><!--<?php if($_description=$this->getCurrentCategory()->getDescription()): ?>    <div class="category-description std">        <?php echo $_helper->categoryAttribute($_category, $_description, 'description') ?>    </div>    <?php endif; ?>--><?php if($this->isContentMode()): ?>    <?php echo $this->getCmsBlockHtml() ?><?php elseif($this->isMixedMode()): ?>    <?php echo $this->getCmsBlockHtml() ?>    <?php echo $this->getProductListHtml() ?><?php else: ?>    <?php echo $this->getProductListHtml() ?><?php endif; ?>


0 0
原创粉丝点击