Pages

Sunday, November 29, 2015

Magento- Free Shipping For International Users


Hi EveryOne, here is the trick for giving free shipping when customer is out side from you country, Just follow below steps-

1. If You are using Magento Theme the goto- /app/design/frontend/yourtheme/default/template/tax/checkout/subtotal.phtml

2. Get Current 'Country Id' and 'Shipping Amount' , just put below code

$countryId=Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getData('country_id');

$shipamount=Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingAmount();


3.Find out if( $getModuleName.$getControllerName != 'checkoutcart' ){ *Code* }

4. Copy and Paste following code instead if( $getModuleName.$getControllerName != 'checkoutcart' ){ *Code* } this loop.


Note: Please mention your '$countryid'  and '$subtotal' amount in below if block

if( $getModuleName.$getControllerName != 'checkoutcart' )
{

            if ($countryId == 'US' || 'UK' && $subtotal >= 1000 )
            {?>

                <div class="disCount clearfix">
                    <div class="fRt">
                                    <div class="clearfix discBlock">
                                        <span>Discount- FREE SHIPPING</span>
                                        <?php
                $shipamount = round( $shipamount );       
                $grandtotal = $grandtotal - $shipamount;
                ?>
        <span class="price">-<i class="WebRupee">Rs. </i><?php echo $shipamount; ?></span></div></div></div>   
                <?php
            }?>
            <span class="price"><?php  echo $this->helper('checkout')->formatPrice($grandtotal); ?></span>
   

<?php
}



4. Clear the cache and run the code.

Simple...........


Thank You, If you have any queries post it below. 

Monday, November 23, 2015

BigRock Offer

".Com" Domains at just Rs.79 - BigRock

 

Yes Its True, Now you can purchase domain Just at Rs. 79/- On Big Rock This is google offer,  to avail this offer You must need to be new customer. 

Follow the below link-

http://www.bigrock.in/special-deals-on-domains

Sunday, November 22, 2015

Google Offline Map

Google Map New Feature- Download Offline Map & Use Without Internet Connection


Most awaited feature from google map is rolling out from yesterday for India. You can now download google's offline map for your city and used it without Internet connection.  This is one of the most important feature specially where Internet connection speed is not constant.
Many of the off line maps are available like Nokia's Here Map, But Google map has its own reputation. So They have introduce in awesome feature.

To Download offline map-

1. Update your Google map to latest version.
2. Open Map, Tap on Account panel 
3. Select Setting
4.Select Offline Areas 
5. Click on + Button
6. Select your city and click on download

I have downloaded map for pune city of size- 69mb only

Thank You!!!!