* Plugin Name: GLM Members Database
* Plugin URI: http://www.gaslightmedia.com/
* Description: Gaslight Media Members Database.
- * Version: 2.1.24
+ * Version: 2.1.25
* Author: Gaslight Media
* Author URI: http://www.gaslightmedia.com/
* License: GPL2
*
*/
-define('GLM_MEMBERS_PLUGIN_VERSION', '2.1.24');
+define('GLM_MEMBERS_PLUGIN_VERSION', '2.1.25');
define('GLM_MEMBERS_PLUGIN_DB_VERSION', '1.1.11');
// Check if plugin version is not current in WordPress option and if needed updated it
return;
}); // do_action 'init'
+/*
+ * Kill Yoast SEO canonical page links in headers. They override the correct canonical links farther down in the header.
+ * Yoast does not have an option for this like some other SEO plugins do.
+ */
+add_filter( 'wpseo_canonical', function($canonical) {
+ return false;
+});
+
/* End of rel_canonical code */