Erin

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • in reply to: Google Maps: No API Key error #1101379
    Erin
    Participant

    Thanks Yan. Did you move the file into your theme or did you just drop the code right into the plugin core files? Wondering if this will get reset on updates.

    Thanks

    in reply to: Google Maps: No API Key error #1096416
    Erin
    Participant

    Okay thanks. Yes, I’ve tried switching to the Twenty Fifteen theme and turning off all plugins and the Search Near function is not working on my end. If it’s something that’s just happening to me, I’m not sure what else to do to troubleshoot.

    in reply to: Display Actual Times on the Filter Bar -> Time section #1096058
    Erin
    Participant

    Thanks so much. I ended up just using jQuery to insert the times.

    /* Add Specific Times to Time Filter
     ==========================================================*/
    		 
    if( $('#tribe_events_filter_item_timeofday').length > 0 ){
    		
        var morning = $('#tribe_events_filter_item_timeofday input[value="06-12"]').next('span');
        var afternoon = $('#tribe_events_filter_item_timeofday input[value="12-17"]').next('span');
        var evening = $('#tribe_events_filter_item_timeofday input[value="17-21"]').next('span');
        var night = $('#tribe_events_filter_item_timeofday input[value="21-06"]').next('span');
    
        var morningText = 'Morning (6 a.m. - 12 p.m.)';
        var afternoonText = 'Afternoon (12 p.m. - 5 p.m.)';
        var eveningText = 'Evening (5 p.m. - 9 p.m.)'; 
        var nightText = 'Night (9 p.m. - 6 a.m.)';
    			
        morning.text(morningText);
        afternoon.text(afternoonText);
        evening.text(eveningText);
        night.text(nightText);
    }
    in reply to: Re-order venues in filter bar #1095934
    Erin
    Participant

    Thanks I’ll use jQuery to reorder.

    in reply to: Google Maps: No API Key error #1095662
    Erin
    Participant

    +1

    I’m also seeing this. My location searches are coming up with “No results” and I’m wondering if it’s related. For the previous posters, is the Search Near feature still working for you?

Viewing 5 posts - 1 through 5 (of 5 total)