Stars of the google reviews are not visible on the website

  • 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 :wave:

I’ve passed your request on to our devs and will get back to you a bit later :slightly_smiling_face:

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 :slightly_smiling_face:

1 Like