Change map location

Discussion in 'ClassiCraft WordPress Theme' started by ykonar, Jun 1, 2014.

Thread Status:
Not open for further replies.
  1. ykonar

    ykonar Guest

    Joined:
    Mar 25, 2014
    Messages:
    5
    Likes Received:
    0
    Hi,

    How can I change the default map location when placing an advert? At the moment it defaults to USA - I want to change it to Namibia.

    Thanks.
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to library > mao > address_map.php present in your theme directory and replace current code
    Code:
    <?php
    if (stripslashes($cc_latitude) && stripslashes($cc_longitude)) {
        ?>
             var   map_latitude = '<?php echo $cc_latitude; ?>';
             var   map_longitude = '<?php echo $cc_longitude; ?>';
        <?php
    }else{
        ?>
            var map_latitude = '38.9826072';
            var map_longitude = '-76.48395949999997';
            <?php
    }
    ?>
     
    with code given below

    Code:
    <?php
    if (stripslashes($cc_latitude) && stripslashes($cc_longitude)) {
        ?>
             var   map_latitude = '<?php echo $cc_latitude; ?>';
             var   map_longitude = '<?php echo $cc_longitude; ?>';
        <?php
    }else{
        ?>
            var map_latitude = '-22.957640';
            var map_longitude = '18.490410';
            <?php
    }
    ?> 

    Thanks & Regards
    Gourav Shrivastava
     
  3. ykonar

    ykonar Guest

    Joined:
    Mar 25, 2014
    Messages:
    5
    Likes Received:
    0
    Hi Gourav,

    Thanks very much for your assistance.
     
Thread Status:
Not open for further replies.

Share This Page