从自定义目录属性中获取空

时间:2016-09-29 10:19:28

标签: php magento magento-1.9.2.4

我在类别中添加了一些属性,它显示在adminhtml目录页面,但是我从前端页面得不到任何内容,它可以在我的计算机上运行,​​但是在我将它移动到hostgator之后它会变空,请帮助。

$this->startSetup();
$this->addAttribute('catalog_category', 'selectcol', array(
    'group' => 'Navigation',
    'type' => 'varchar',
    'input' => 'select',
    'source' => 'mact/category_attribute_source_selectcol',
    'label' => 'Select no of column',
    'backend' => '',
    'default'  => '4',
    'visible' => true,
    'required' => false,
    'visible_on_front' => true,
    'wysiwyg_enabled' => true,
    'is_html_allowed_on_front'  => true,
    'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
    'position' => 150,
));

 $this->endSetup();

从块php文件中获取属性。

  $cat = Mage::getModel('catalog/category')->load(43);
  $cat->getSelectcol();//get nothing.

非常感谢

0 个答案:

没有答案