Showing posts with label API. Show all posts
Showing posts with label API. Show all posts

Monday, November 4, 2013

Published 1:18 AM by with 0 comment

google translator

.skiptranslate { display:none !important; visibility:hidden !important; } .lang { cursor:pointer; } $(document).ready(function () { $('.lang').on('click', function () { $.cookie('googtrans',$(this).attr('lang')); ...
Read More
    email this       edit

Monday, May 20, 2013

Published 2:17 AM by with 0 comment

Unable to fetch all items of an order in Magento?

I used this in my module. it may help you.Load Magneto Order and Product Collection $resource_model = Mage::getResourceModel('sales/order_collection');$product_model = Mage::getModel('catalog/product');Loop through order collection$records = 0;    $productData = array();    $orderProductArr = array();    foreach($resource_model as $all_orders)   ...
Read More
    email this       edit