1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Simple geo-targeting scripts?

Discussion in 'Programming' started by Melloweitsj, Aug 5, 2013.

  1. #1
    I am looking for a VERY simple geo-targeting script that will allow me to show one ad to US visitors and another one to the rest of the world. Is there anything like this available for free or do I need to buy I plugin for WP or something?
     
    Melloweitsj, Aug 5, 2013 IP
  2. Vooler

    Vooler Well-Known Member

    Messages:
    1,146
    Likes Received:
    64
    Best Answers:
    4
    Trophy Points:
    150
    #2
    What price you have in mind? so that if it is feasible I build it for you in matter of 1 day. In fact that IP database I provide you, will have one extra mysql table in your database.
     
    Vooler, Aug 6, 2013 IP
  3. marht

    marht Active Member

    Messages:
    142
    Likes Received:
    2
    Best Answers:
    1
    Trophy Points:
    58
    #3
    Hi Melloweitsj,
    I suggest downloading the plugin: "Visitor Maps and Who's Online".

    With Visitor Maps and Who's Online, you will be able to track the users location.
    Now if you want to show a specific image or text to the US simply use this in your PHP:

    <?php
    global $wpdb;
    global $current_user;
    get_currentuserinfo();
    $user_country = $wpdb->get_var("SELECT country_name FROM ".$wpdb->prefix."visitor_maps_wo WHERE user_id = ".$current_user->ID." ORDER BY time_entry DESC LIMIT 1");
    $is_us = false;
    if ($user_country == "United States") { $is_us = true; }
    ?>
    
    <?php if ($is_us) { ?>
    // YOUR HTML FOR US USERS
    <?php } else { ?>
    // HERE YOUR HTML FOR THE REST OF THE WORLD
    <?php } ?>
    PHP:
    I hope this helps you!
    Kind Regards,

    Maarten
     
    marht, Aug 6, 2013 IP
    Vooler likes this.
  4. Melloweitsj

    Melloweitsj Well-Known Member

    Messages:
    123
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    108
    #4
    Thanks for the response mrht. I found what I was looking for after browsing another forum yesterday: http://www.pokeraffiliatelistings.com/forums/wordpress-web-design-coding-technical/26347-geotarget-tool-non-wordpress-sites.html
     
    Melloweitsj, Aug 6, 2013 IP