html Modificar atributos especificos deunaclassía
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Modificar atributos especificos deunaclassía相关的知识,希望对你有一定的参考价值。
http://blog.ansyori.com/magento-update-category-attributes-programmatically/
$resource = Mage::getResourceModel('catalog/category');
$collection = Mage::getModel('catalog/category')->getCollection();
foreach($collection as $category) {
$category->setStoreId(0); // 0 for default scope (All Store Views)
$category->setData('page_layout', 'two_columns_left');
$resource->saveAttribute($category, 'page_layout');
$category->setStoreId(0); // 0 for default scope (All Store Views)
$category->setData('is_anchor', 1);
$resource->saveAttribute($category, 'is_anchor');
}
Magento 2
use Magento\Catalog\Model\ResourceModel\Category as ResourceModelCategory;
//$categorybyStore \Magento\Catalog\Model\Category
$categorybyStore->setStoreId();
$categorybyStore->setData('name' , 'bags');
$this->resourceModelCategory->saveAttribute($categorybyStore,'bags');
以上是关于html Modificar atributos especificos deunaclassía的主要内容,如果未能解决你的问题,请参考以下文章
css Modificar estilo de un texto seleccionado。
css Modificar estilo de un texto seleccionado。
css Modificar estilo de un texto seleccionado。
javascript Adicionar atributos em Array
markdown Atributos Aninhados
PHP Desactivar Magic Quotes sin modificar php.ini