.

.
Get Logged In User  Product Wishlist  in Magento Programatically

Get Logged In User Product Wishlist in Magento Programatically

Get Wishlist by CustomerId with product detail .Let see example <?php require_once 'app/Mage.php'; Mage::app('default'); Mage::getSingleton("core/session",...
Add Product to  wishlist by Logged In Customer in magento  programatically

Add Product to wishlist by Logged In Customer in magento programatically

For adding product to wishlist, we need customer id & product id . Let see example. <?php require_once 'app/Mage.php'; Mage::app('default'); Mage::getSingleton("core/session",...
Catalog search product list in magento programatically

Catalog search product list in magento programatically

Magento search section is a bit more complex as they built a mechanism to save queries and results for caching and statistics. So, you need to prepare...