How to make it work on WP 4.3+
-
Open the plugin in the WordPress Plugin Editor and find half way down these lines:
... static function configure_plugin() { if ( version_compare( get_bloginfo( 'version' ), '4.2', '>=') ) { self::debug( 'Not yet qualified with this version of WordPress. Bypassing UGL.' ); return; } ...
Then simply delete the lines
if ( version_compare( get_bloginfo( 'version' ), '4.2', '>=') ) { self::debug( 'Not yet qualified with this version of WordPress. Bypassing UGL.' ); return; }
Save the file and it should start working again.
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘How to make it work on WP 4.3+’ is closed to new replies.