You are loading the loader (gstatic.com/charts/loader.js) multiple times, which is not a good idea. You should move the script that loads the loader outside of the sidebar, preferably move it to the document head. And then only do it once.
Also, it is probably best to avoid calling google.charts.load more than once as well, especially when there are multiple independent threads which might confuse which callback goes with which load call. So move the google.charts.load calls to the head as well, and merge them into one (by merging the packages setting). On Tue, May 26, 2020 at 2:27 PM piano lab <[email protected]> wrote: > I made some tests, the conflict might be with my wordpress theme or the > lightspeed cache plugin? Everything is fine if the page is outside the > theme, but if I put the code on any page of my theme I only see the geo > chart, then if i refresh the page I see the first pie chart appears, but it > misses the two last charts. I made a try removing geo chart but I still > only see the first pie chart. > > Here's a page as example : > https://www.greenlightmotion.com/profile-2/hawerchuk/ > > Thank you for your time. > > > >> -- > You received this message because you are subscribed to the Google Groups > "Google Visualization API" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-visualization-api/8cce60f8-9b12-4f42-8f6f-eb761b745bee%40googlegroups.com > <https://groups.google.com/d/msgid/google-visualization-api/8cce60f8-9b12-4f42-8f6f-eb761b745bee%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2> [email protected] <[email protected]> Cambridge MA -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJN%2B%2BmD0LcZ-kL8xDhBXB-%2B40%3DKPqSwRYC%3DVo%2BX2bLCB7A%40mail.gmail.com.
