After updating plugin google map display a grey box

Home Forums Calendar Products Events Calendar PRO After updating plugin google map display a grey box

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1283418
    Alessandro
    Participant

    Good morning,
    today after updating Your plugins Google map doesn’t display anymore (grey box).
    I read all posts about it (trying inserting the snippet code in function.php of the theme and so on) but none of the post could help me to find any solution. Obviously I inserted correctly the Api Key (infact before of the upgrade everything worked like a charm but now the grey box seems not fixable …
    I used the inspector and I notice that instead of the google map (in the frame where the google map has got to be) there is this code :
    <div id=”tribe-events-gmap-Something in italian” style=”height: 350px; width: 100%”></div>

    ???!!
    Something in italian …and what is this ??
    Thank You very much for all what You could do to help me out here
    Warm regards
    Alessandro

    #1283599
    Alessandro
    Participant

    Good morning,
    I solved the issue.
    Some days ago I applied a suggestion about this thread (for another issue) LINK
    and I forgot to rollback the file function.php.

    Trisha suggest me to add this snippet:

    function tribe_translate_widget_text_filter( $translated_text, $untranslated_text, $domain ) {

    //make the changes to the text
    switch( $untranslated_text ) {

    case 'There are no upcoming %s at this time.':
    $translated_text = __( 'Something in italian','the-events-calendar' );
    break;
    }
    return $translated_text;
    }
    add_filter('gettext', 'tribe_translate_widget_text_filter', 20, 3);

    Once removed everything was back again working like a charm!!
    Thank You
    Ale

    #1283732
    Cliff
    Member

    Thanks for your thorough replies. I’m glad you’re good-to-go now. I’ll let Trisha know she did a good job for you. 🙂

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘After updating plugin google map display a grey box’ is closed to new replies.