Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter kingofpain

    (@kingofpain)

    anyone?

    event locations search feature to control an entire buddy press site

    do you have further details about this? this might not be possible

    Thread Starter kingofpain

    (@kingofpain)

    basically at the top of my site i would like a dropdown showing countries/regions then when someone clicks thier region it will only show them content (members, activity, events) from that region on both buddypress and events manager.

    perhaps theres another plugin that can do the buddypress side of content but how would i integrate events manager content into that?

    of course the search feature on events manager would then only require a dropdown for city/town to narrow search further…

    kind of get my idea?

    sorry, am afraid that this isn’t possible at the moment.

    Thread Starter kingofpain

    (@kingofpain)

    could it not be custom coded, i would be willing to pay for this feature

    Couldn’t this be done using category, or a tags. I don’t know enough php/html to write this but what if the values of the drop down is the same name as your categories.

    Using php you could call the value selected in the drop down and assign it as a variable and then limit the posts on the page by that variable.

    $CAT = the_dropdown_value;
    
        // Get the ID of a given category
        $category_id = get_cat_ID( $CAT );
    
    query_posts('cat=$category_id');
    while (have_posts()) : the_post();
    the_content();
    endwhile;

    As I said I am not a great coder as of yet so don’t try this out. this post is to help agelonwl come up with a solution for you.

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    is this not the same question as you asked here?

    http://wordpress.org/support/topic/auto-group-events?replies=4

    Thread Starter kingofpain

    (@kingofpain)

    actually yea sorry totally forgot about this thread in fairness the other thread started off differently asking about groups but seeing as that is a bad approach id like to stick with this thread instead.

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    I cannot help you debug this if there are problems, but a user submitted this add-on which makes event listings location-aware, it uses the free geoip database from http://dev.maxmind.com/geoip/geolite

    https://dl.dropbox.com/u/25931909/events-manager-geoip.zip

    I’d love to put this up somewhere soon once I have time to test it, let me know if it works for you!

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Locations Site Wide.’ is closed to new replies.