skip to Main Content

adding a new theme in magento2

i have uploaded the files of the new theme bought from https://themeforest.net/user/codazon . But don't know where to move each individual files to the correct directories in order to add this new theme. Below is the files inside the new…

VIEW QUESTION

Can't extend/override parent "move" element – Magento

In catalog_product_view.xml in the parent theme there is this, just copied up to one line past the line Im trying to change: <?xml version="1.0"?> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceContainer name="content"> <block class="InfortisBaseBlockProductView" name="product-view-wrapper" template="product/view.phtml" before="-"> <container name="container_product_image_1" label="Product View, Image…

VIEW QUESTION

Magento 2 Wishlist head title

I'm Using Magento EE 2.2.2. I am trying to change the head title of wishlist "My Wish List" to "My Favourites". I am trying in XML wishlist_index_index.xml and added the below lines. <?xml version="1.0"?> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <head> <title>My Favourites</title>…

VIEW QUESTION

magento2 save form to core_config_data

I am using magento2. I have form with few "ui_components" fields, lets say: field1, field2 ,field3 and Save button How can I save values that was enter to all fields to core_config_data? regarding core_config_data I know that I have to…

VIEW QUESTION

Magento 2 : Display Loader While Ajax call on Column row action?

Grid xml column: <column name='actions' class='MyTestUiComponentListingColumnsFeedsAdvancedActions'> <argument name='data' xsi:type='array'> <item name='config' xsi:type='array'> <item name='component' xsi:type='string'>My_Test/js/grid/columns/actions</item> <item name='dataType' xsi:type='string'>text</item> <item name='label' xsi:type='string' translate='true'>Actions</item> <item name='sortOrder' xsi:type='number'>90</item> </item> </argument> </column> Actions.js define( [ 'jquery', 'underscore', 'mageUtils', 'uiRegistry', 'Magento_Ui/js/grid/columns/actions', 'Magento_Ui/js/modal/confirm' ], function ($,…

VIEW QUESTION

Magento 2 – add a category attribute

I'm tryng to create a custom category attribute using this guide but it doesn't work for me, this is the code that I'm using for the InstallData.php: use MagentoFrameworkSetupModuleContextInterface; use MagentoFrameworkSetupModuleDataSetupInterface; use MagentoFrameworkSetupInstallDataInterface; use MagentoEavSetupEavSetup; use MagentoEavSetupEavSetupFactory; class InstallData implements…

VIEW QUESTION
Back To Top
Search