Skip to content

magento man

Add field to Checkout

I created a custom field for customer: <?php declare(strict_types=1); namespace VendorMyModuleSetupPatchData; use MagentoCustomerModelCustomer; use MagentoCustomerSetupCustomerSetup; use MagentoCustomerSetupCustomerSetupFactory; use MagentoEavModelEntityAttributeSet; use MagentoEavModelEntityAttributeSetFactory; use MagentoFrameworkSetupModuleDataSetupInterface; use MagentoFrameworkSetupPatchDataPatchInterface; use MagentoFrameworkSetupPatchPatchRevertableInterface; class AddCustomAttributeCustomerAttribute implements DataPatchInterface, PatchRevertableInterface { /** * @var ModuleDataSetupInterface */ private $moduleDataSetup;… Read More »Add field to Checkout

Added custom field/attribute to magento 2 pageBuilder all content types but the attribute is not displaying on frontend html

I extended magento 2 pageBuilder media content types (image, banner, slide, slider etc..). So if I add any value in that custom field that will be displaying on frontend CMS (home) page correctly but I have the image/banner in category… Read More »Added custom field/attribute to magento 2 pageBuilder all content types but the attribute is not displaying on frontend html