Questions tagged «custom-attributes»

2
如何在客户地址编辑表单中添加客户自定义属性?
我添加了一个客户自定义属性作为customer_address类型,它可以在admin,onepagecheckout以及送货和帐单地址中正常运行。 我在模块基本目录中创建了: my_namespace/my_module/etc/module.xml和registration.php composer.json文件。 my_namespace / my_module / Setup / InstallData.php namespace Namespace\Module\Setup; use Magento\Framework\Module\Setup\Migration; use Magento\Framework\Setup\InstallDataInterface; use Magento\Framework\Setup\ModuleContextInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; /** * @codeCoverageIgnore */ class InstallData implements InstallDataInterface { /** * Customer setup factory * * @var CustomerSetupFactory */ private $customerSetupFactory; /** * Init * * @param CustomerSetupFactory $customerSetupFactory …

5
Magento 2:如何在目录中显示自定义属性?
我创建了一个新的textfield属性,并将以下设置设置为yes: Visible on Catalog Pages on Storefront Used in Product Listing 该属性已分配给一个属性集,并按预期显示在产品视图中。 但是,它在目录视图中不可见,我使用的是默认的Luma主题,并且清除了缓存并重新建立了索引。如果我查看模板文件: magento-catalog/view/frontend/templates/product/list.phtml 我找不到任何获得自定义属性的代码,因此默认情况下Luma主题似乎不支持此功能。 如何在list.phtml中获得产品自定义属性标签和值?

2
通过编程将“自定义”属性添加到“自定义”属性集中
嗨,有人可以帮我吗? 我创建了一个自定义属性集和一个自定义属性 $installer = $this; /* @var $installer Mage_Eav_Model_Entity_Setup */ $installer->startSetup(); //Create Attribute set with Based on Default attribute set //$installer->removeAttributeSet(Mage_Catalog_Model_Product::ENTITY, 'New Attr Set'); /* $skeletonID=$installer->getAttributeSetId('catalog_product','Default'); $entityTypeId = Mage::getModel('catalog/product') ->getResource() ->getEntityType() ->getId(); //product entity type $attributeSet = Mage::getModel('eav/entity_attribute_set') ->setEntityTypeId($entityTypeId) ->setAttributeSetName("New Attr Set"); $attributeSet->validate(); $attributeSet->save(); $attributeSet->initFromSkeleton($skeletonID)->save(); //Create attribute new_attr //$installer->removeAttribute('catalog_product', 'new_attr'); …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.