skip to Main Content

Magento 1.x Date field is not getting updated when we use setData method with multiple setData

We are using Magento 1.9 for our application. Here is my sample code $customer_collection= Mage::getModel("customer/customer")->load($data['customer_id']); foreach ($data['data'] as $key => $customer) { $customer_collection->setData($customer['attribute_name'] , $customer['attribute_value']); } $customer_collection->save(); //finally saving the data Above code is working for all the fields except…

VIEW QUESTION

Magento layout block

i changed the images directly in the coding of the home page in the panel and now its showing on the home page only before doing this it was showing on every product page any help will be appreciated. Home…

VIEW QUESTION

Override Adminhtml Sales Order Grid (Magento 1.x)

I want to override sales order grid in Magento admin. I have created custom module for that, but seems my override doesn't work. There is no errors. Please find my codes above: app/etc/modules/ <config> <modules> <Bikebear_SalesGrid> <active>true</active> <codePool>local</codePool> </Bikebear_SalesGrid> </modules>…

VIEW QUESTION

Magento 2.2 Grunt Less Compile

i have problem with compile less file. In grunt config file themes.js i added <theme>: { area: 'frontend', name: '<Vendor>/<theme>', locale: 'de_DE', files: [ 'css/styles-m', 'css/styles-l' ], dsl: 'less' } and when i use commend grunt less:<theme> i get Destination…

VIEW QUESTION

Magento 2 Errors

Yesterday I have tried to install Magento 2. When trying to access the front end I got plenty of errors both on the front end of the site and the Magento 2 admin. Since this is my first time I…

VIEW QUESTION

Magento product import

i want to programmatically import a product into my magento. Unfortunatly I get an error which is not telling me a lot maybe some of you have an idea. Here is my php code: echo '<pre>'; echo 'Create Product Model';…

VIEW QUESTION
Back To Top
Search