whatnextadventures
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Hi @ravanh,
I’m quite new to wordpress development. I didn’t knew you had to do a function then use add_action. It’s working now with this :function wna_disable_genericon () { global $wp_styles; if ( wp_style_is('genericons', 'registered') == TRUE) { wp_dequeue_style( 'genericons' ); // This is to force other plugins and themes with older versions to STFUN00B wp_deregister_style('genericons'); } } add_action( 'wp_print_styles', 'wna_disable_genericon' );Thanks for your reply anyway 🙂
Hi,
I would like to disable genericons completely. I addedwp_dequeue_style( 'genericons' ); // This is to force other plugins and themes with older versions to STFUN00B wp_deregister_style('genericons');to my functions.php but the genericons seems to still be loaded. Am I missing something ?
Hi,
Same problem here with update 3.3.3
Problem is :
“NetworkError: 404 Not Found – http://www.xxxx.com/wp-content/plugins/wordpress-seo/js/dist/wp-seo-post-scraper-332.min.js?ver=3.3.3”
“ReferenceError: YoastSEO is not defined”I tried this fix. Not sure if it’s good but it works.
edit wp-content/plugins/wordpress-seo/admin/class-admin-asset-manager.php
Goto line 180 and replace :
scraper-332
by
scraper-333Chag
Viewing 3 replies - 1 through 3 (of 3 total)