Magento
Magento: remove up-sell, cross-sell & related products
Magento stored all Data about up-sells, cross-sells and related products in catalog_product_link table. The link_type_id column specifies the relation between product_id and linked_product_id. Possible relations are: 1 – Related products 2 – Bundle products 3 – Grouped products 4 – Up-sell 5 – Cross-sell So if you want to remove Read more…
Magento
Magento: call cms static block
There are Three Ways to access static block in Magento. Inside a template file using PHP Inside a content field of a CMS Page in the Magento admin Inside the Layout Update XML field of a CMS page in the Magento admin 1- Accessing a Magento Static Block From Read more…
Magento
Magento: Scroll down automatically functionality to a specific page
Note: contact is a specific page if the url found contact string it will fire the jquery function to scroll to bottom
Magento
Magento: Blogs Links
http://www.jyotiranjan.in/blog/php/magento/ http://ka.lpe.sh/category/magento/ https://zendanwar.wordpress.com/ http://blog.mdnsolutions.com/ http://importantmagento.blogspot.in/ https://indiestechtips.wordpress.com/category/magento/ http://www.devinrolsen.com/category/magento-tutorials/ http://rixit-magentoexperts.blogspot.in/ http://shivakumariyer.blogspot.in/ http://blog.decryptweb.com/category/magento/ https://vikenshah.wordpress.com/category/magento/ http://magecodes.blogspot.in/ https://www.flinttechnology.co.uk/recommended_magento_blogs/ http://www.magentotutorials.in/ http://magentosource.blogspot.in/ http://magentocodes.blogspot.in/ https://shahkeyul.wordpress.com/category/magento/ https://pratikkhamar.wordpress.com/ http://magebug.blogspot.in/ Magento 2 Blog Links: http://www.magewallet.com/blog/magento-2/
Magento
Magento: How to check if current page is homepage?
1-If you are in template/page/html/header.phtml template file, then you can check for homepage with the following code: 2-If you are elsewhere (in any other .phtml template file or in any other .php class file) then you can use the following code: 3-Below is an alternative way to check for homepage:-
Magento
Magento: Home page custom category collection with product listing using ajax
In Your Home.phtml // home.phtml is a custom page that is called by backed cms home page 1- copy and paste the following code in your home.phtml 2- Create a folder named ajax in your root directory and inside the folder create a php file name product_listing.php and paste the Read more…