-
Henry replied to the topic Including jQuery causes some BuddyPress functionality to stop working in the forum How-to & Troubleshooting 11 years, 1 month ago
@cambridge15 Run your website through http://tools.pingdom.com to see which resources are being loaded. That should show you which scripts you need to focus on.
-
Henry replied to the topic Including jQuery causes some BuddyPress functionality to stop working in the forum How-to & Troubleshooting 11 years, 1 month ago
@cambridge15
wp_dequeue_script( 'jquery' );
goes into your theme’s functions.php file but you need a bit more for it to work:function my_dequeue_jquery() {
wp_dequeue_script( 'jquery' );
}
add_action( 'wp_footer', 'my_dequeue_jquery', 11 );
@cambridge15
Active 4 years, 5 months ago