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

How to edit the window layout in Magento

Inside the folder structure of Magento, which is the file that I must edit to change the shop window: I am editing the file list.phtml in the following path: app/design/frontend/MEU_TEMA/default/template/catalog/product/list.phtml But no changes take effect ... ** I need to…

VIEW QUESTION

Magento get Wishlistitem from Product

public function addItem(Mage_Wishlist_Model_Item $item) { $superAttributes = Mage::app()->getRequest()->getParam('super_attribute'); if ($item instanceof Mage_Wishlist_Model_Item && isset($superAttributes)) { $simpleItem = Mage::getModel('catalog/product_type_configurable')->getProductByAttributes($superAttributes, $item->getProduct()); } return parent::addItem($simpleItem); } Now my problem is that i want to call the parent function which needs to receive an…

VIEW QUESTION

Magento hreflang Implementation

Using code from a previous discussion (link:https://magento.stackexchange.com/questions/12504/how-to-add-hreflang-tags-or-other-meta-tags-to-pages-in-magento), I was able to implement the hreflang links into our Magento site. Here is the code that worked for me: <?php foreach (Mage::app()->getWebsites() as $website) { foreach ($website->getGroups() as $group) { $stores =…

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
Back To Top
Search