You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code that generates the lightboxes is being loaded into the wp_head hook, but it stops it from processing correctly and may cause some Themes to break. A more graceful solution, that fixes the issue is loading them in the footer. The three files to be modified are:
The code that generates the lightboxes is being loaded into the wp_head hook, but it stops it from processing correctly and may cause some Themes to break. A more graceful solution, that fixes the issue is loading them in the footer. The three files to be modified are:
game-on.php
128: add_action( 'wp_footer', 'go_stats_overlay' );
types/stores/includes/lightbox/frontend-lightbox.php
401: add_action( 'wp_footer', 'go_frontend_lightbox_html' );
types/types.php
1362: add_action( 'wp_footer', 'go_create_help_video_lb' );
The text was updated successfully, but these errors were encountered: