Articles Archive for Year 2009
Magento, MySQL »
Suppose, you have a product collection and you want to filter it by category. Suppose, you want to filter it by more than one category. You can use addCategoryFilter if you have only one category. But, what if you want to filter by more than one category? Category ids are stored for product in a [...]
Magento »
Here is the code to create, read, and delete cookie in Magento. Mage_Core_Model_Cookie class contains functions to set, get and delete cookie.
Wordpress »
Generally the wordpress 404 page contains one or two sentence saying that the page is not found. But you can make it more user friendly. Instead of just writing plain text about page not found, we can display archive list and a search form. In this way, the visitor can search or browse your website [...]
Wordpress »
Here is the procedure to create a custom archive page for your wordpress blog. 1) Create a file archives.php 2) Write the following code in it.
Magento »
You can get current category from the following code: You can get the parent category from the following code:
Magento »
Here, I will be showing you the code to get sub categories of a particular category and the number of products (product count) present in the sub categories. Like, I have a category named Furniture. The sub categories under Furniture are Living Room and Bedroom. Now, I want to show the sub categories under Funiture [...]
Magento »
Difference between backorder and pre-order A backorder is for an item that was in stock previously but is temporarily out of stock. A pre-order is for an item that has not been released yet. Scenario for backorder:
Magento »
If you have country code(e.g. NP, EN, NL) then you can get country name from the following code: Get the collection of all the countries.
Magento »
You can add attribute from Admin Panel -> Catalog -> Attributes -> Manage Attributes. You can also add attributes from mysql setup file of your module. MySql setup file is present inside “YourModule/sql/yourmodule_setup” directory.
Magento »
Scenario: While editing product programatically from frontend. I was trying to change the status of the product with the following code: Mage::getModel(‘catalog/product’)->load($product->getId())->setStatus(2)->save();
Google, Humor, Security »
I’m human, Google ! I was googling something and google suddenly said sorry to me. It says my computer is sending automated queries. I was just googling “magento programmer developer nepal” by changing the word position at each time. I just googled this way for at most 5 times. Google help says the following thing [...]
Magento »
Suppose, you have a module called MyModule. Its version is 0.1.0. Now, you want to do some database changes for the module. You have the mysql setup file (mysql install file) mysql4-install-0.1.0.php in MyModule/sql/mymodule_setup folder of your module. You don’t need to make direct changes to database. You can upgrade your module to make your [...]
Magento »
$product->getCategoryIds() gives array of category ids which the product is associated to. We can loop through this array and load each category to get the category name and url.
Magento »
In my previous post on getting height and width of image , I have written focusing on product image, i.e. getting height and width of product image. In this case, I will be showing you how to get height and width of any image in Magento. The image need not to be product image.
Magento »
In the default magento installation, the top links are as follows: My Account | My Wishlist | My Cart | Checkout | Log In In order to change or reorder them you have to do some changes in layout files (xml files).