Trouble adding iframe to Calendar Additional Details View

I am working with Version 6.5.11 (Build 8754).  I am trying to add a google calendar iframe to the calendar additional detail pop up.  I am editing additionaldetails.php in metadata (custom folder) for meetings module but I do not see the change pop up. 
This is the code I am adding to the file. 
Please let me know what am doing wrong.
if(!empty($fields['MAP'])) {
  $overlib_string .= '<b>'. $mod_strings['LBL_MAP'] . '</b> ' . substr($fields['MAP'], 0, 300);
  if(strlen($fields['MAP']) > 300) $overlib_string .= '...';
  $overlib_string .= '<br>';
}
Parents
  • Hello Jose,

    Google Calendar is not able to be loaded in an iframe on another website, because of the following error:

    Refused to display 'https://www.google.com/calendar/render?pli=1' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.

    You can reproduce this by creating a simple HTML web page on your web server that attempts to load your Google Calendar in an iframe.  The frame will be blank and if you check Google Chrome's JavaScript Console or Firefox's Fire Bug Console, you'll see a similar error.

    Google has control of this setting on their side of things.  For more information about 'X-Frame-Options SAMEORIGIN' check out this link - https://developer.mozilla.org/en-US/docs/Web/HTTP/X-Frame-Options

    Regards,

    Dan Kallish
    Technical Support Engineer
    SUGARCRM
Reply
  • Hello Jose,

    Google Calendar is not able to be loaded in an iframe on another website, because of the following error:

    Refused to display 'https://www.google.com/calendar/render?pli=1' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.

    You can reproduce this by creating a simple HTML web page on your web server that attempts to load your Google Calendar in an iframe.  The frame will be blank and if you check Google Chrome's JavaScript Console or Firefox's Fire Bug Console, you'll see a similar error.

    Google has control of this setting on their side of things.  For more information about 'X-Frame-Options SAMEORIGIN' check out this link - https://developer.mozilla.org/en-US/docs/Web/HTTP/X-Frame-Options

    Regards,

    Dan Kallish
    Technical Support Engineer
    SUGARCRM
Children
No Data