 Recently there is a request to edit a old Prestashop 1.5 site. The request is to add the add to cart button at the home featured product. That particular prestashop site is quite old and did not perform any maintenance and hence all the module is still quite old. To avoid breaking anything in the site, i managed to find out that the add to cart button is being hide using CSS. So to enable the add to cart button is just an easy task at modifying the correct css!
Recently there is a request to edit a old Prestashop 1.5 site. The request is to add the add to cart button at the home featured product. That particular prestashop site is quite old and did not perform any maintenance and hence all the module is still quite old. To avoid breaking anything in the site, i managed to find out that the add to cart button is being hide using CSS. So to enable the add to cart button is just an easy task at modifying the correct css!
To enable add to cart button at Home Featured Product in Prestashop 1.5, follow the steps below:-
			
				
				
Advertisements
				
				
				
				
											
			
- Open this file /modules/homefeatured/homefeatured.css file, and edit this 2 line:-
#featured-products_block_center li .ajax_add_to_cart_button {display:none;} #featured-products_block_center li span.exclusive {display:none;}to #featured-products_block_center li .ajax_add_to_cart_button {display:block;} #featured-products_block_center li span.exclusive {display:block;}
Related posts:
How to install apache, php, mysql with macport in Mac OS X
phpmyadmin disable 1440 timeout with auto login
How to hide admin bar from non admin in WordPress
Install eAccelerator to Optimize PHP performance
Open Office: How to change page layout to landscape
Prestashop: How to disable ajax add to cart?
How to enable email notification in Adium?
How to re-arrange account order in Thunderbird
						Share this with your friends:-