Unlock the power of PHP with our expert articles. From beginner basics to advanced development techniques, our tutorials will help you build robust and scalable web applications. Explore now!
Recently I discovered all the product positions after being assigned to a category were defaulted to 1. I needed to change this number to anything other than 1. I found that Magento currently defaults this number to 1 in their resource model under the function _saveCategories. The entire class would be Mage_Catalog_Model_Resource_Product. In order to…
In this article, I will show you how to fix the customer downloadable products page broken issue.
Today I am going to show you some different methods that can be used while using the SOAP API V2 method versus V1. There are a couple of settings that you should be aware of in Magento regarding the API that can impact your API call. You can find these settings here: System > Configuration…
Have you recently discovered that when you try to submit a rating from the backend you receive a 404 error? I ran into this issue with a client of mine and after several minutes of debugging installed 3rd party extensions, I found that this is indeed a core coding issue with Magento’s code. The Magento…
I decided to write this post since there is not much documentation related to getting the customer group id for a coupon. The best way to achieve this is to grab the customer group id using the function getCustomerGroupIds(). Below is a simple and fast way to get this using the salesrule/rule model. Now you…