Magento
Magento: Category image resize
1-Copy category folder from base/default/template/catalog/category and paste it in your theme before modification. 2-copy and paste the following code in your-theme/default/template/catalog/category/view.phtml
1-Copy category folder from base/default/template/catalog/category and paste it in your theme before modification. 2-copy and paste the following code in your-theme/default/template/catalog/category/view.phtml
You Can accomplish this task in three ways. 1- Using Back end Login to admin side Catelog -> manage Categories -> Choose your category Then on the tab section select Custom Design. Change the Page Layout as what ever you want. 2-Using “page.xml” Open page/xml located in ( app/design/frontend/your_package/your_theme/layout/page.xml) find Read more…
1- open Developer log from backend to check the listing page layout. 2- In my case i found that it is 3columns.phtml app/design/frontend/default/your-theme-name/template/page/3columns.phtml Now in the Magento back end create a new Static Block. I will assume that you are already familiar with creating a Static Block in Magento so Read more…
There are several methods used for overriding magento core files, which i have explained earlier. Here I’m going to explain one of simplest method to override core files in magento. In this method to override magento core files, you don’t need to create your own module and write some xml Read more…
Open .htaccess file in Your Root Folder and copy and paste the following code.
If you want to access your magento URL without index.php for example: http://domain.com/index.php/category to http://domain.com/category then use the following steps 1) Login to admin section by using the URL http://domain.com/index.php/admin 2) then go to “System >> Configuration >>Web >> Search Engines Optimization” Use Web Server Rewrites : YES 3) Go Read more…
In Magento CMS pages if you want to show Static CMS Blocks on left/right side, following is simple code to do it. Following is syntax for left column and here is for right coloum:
Due to SEO reasons, a common problem that Magento has is that it indexes two URLs of the same page which causes issues with duplicate content when it comes to Google crawling. For example it will index both of these URLs. http://www.magentosite.com/category.html/ and http://www.magentosite.com/category.html Ideally, we would like to stop Read more…
Your Magento product ordering might seem a long process to some business owners, so we thought of making it simple, so that users can directly enter the quantity in the products listing area and click on ADD TO CART and checkout. So, here is how you can do that. Go Read more…
You can use the following code to get any product’s stock information like quantity (qty), minimum quantity (min_qty), stock availability (is_in_stock), minimum and maximum sale quantity (min_sale_qty and max_sale_qty), etc. First load the product. Product can be loaded in different ways. the two different ways to load any product in Read more…