advads_gam_debug_link Javascript Error since version 1.48.0
-
When I install a version of the advanced-ads plugin >= 1.48.0, I get the following error in my javascript console:
ReferenceError: advads_gam_debug_link is not defined
at advadsGamShowDebugLink (romane/:3799:7)
at window.advanced_ads_ready (romane/:41:155)
at romane/:3804:6This seems to be caused. by changes made in 1.48.0 where they renamed the advads_gam_debug_link variable to advadsGamDebugLink, but missed 2 occurrences of it.
Please update the classes/frontend_checks.php line ~946 to update:
advads_gam_debug_link.className = advads_gam_debug_link.className.replace( 'hidden', '' );
to
advadsGamDebugLink.className = advadsGamDebugLink.className.replace( 'hidden', '' );
- The topic ‘advads_gam_debug_link Javascript Error since version 1.48.0’ is closed to new replies.