-
Issue description: The stars of the Google reviews are not visible on the website.
-
Link to the page with the widget in question: website link removed for privacy reasons (Joomla 3 CMS)
1 Like
Hi @user10311 and welcome to the Community
I’ve passed your request on to our devs and will get back to you a bit later
We’ve fixed the issue by adding this code to the Custom JS field on the Settings tab of your widget’s settings:
const frame = document.createElement("iframe");
document.body.append(frame);
const arrayFrom = frame?.contentWindow.Array.from;
frame.remove();
if (arrayFrom) {
Array.from = arrayFrom;
}
Check it out and let me know if it helped
1 Like