Hello,
is there a way to use the inWix Apps “Google Drive” or “Google Calendar” in a dynamic page?
e.g every user logs in to schedule page he sees his own calendar or drive
I managed to get a workaround via Html & Src Codes but I’m using the google calendar & Drive embed that looks really ugly
$w.onReady( () => {
$w("#dataset1").onReady( () => {
$w("#ScheduleEmbedhtml").scrolling = "no";
let widget = $w('#dataset1').getCurrentItem().scheduleEmbedLink;
$w("#ScheduleEmbedhtml").src = widget;
});
});
The google apps look better but can’t seem to manage to get It work since the settings are connected in the widget itself
Thanks