Created
February 28, 2017 21:20
-
-
Save dherbold/c2f3e155620b37f43ca4a394e8a5b187 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function my_force_ssl() { | |
return true; | |
} | |
add_filter('force_ssl', 'my_force_ssl', 10, 3); | |
================================================================== | |
// Remove WooCommerce Updater | |
remove_action('admin_notices', 'woothemes_updater_notice'); | |
// Remove IgniteWoo Updater | |
remove_action('admin_notices', 'ignitewoo_updater_notice'); | |
================================================================== | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment