diff --git wordcamp.org/public_html/wp-content/plugins/camptix-badge-generator/includes/html-badges.php wordcamp.org/public_html/wp-content/plugins/camptix-badge-generator/includes/html-badges.php
index 67afedc..fbc6f95 100644
|
|
function remove_all_previewer_styles() { |
228 | 228 | |
229 | 229 | remove_all_actions( 'wp_print_styles' ); |
230 | 230 | |
231 | | remove_action( 'wp_head', 'wp_custom_css_cb', 11 ); // todo compat with WP 4.7. this line can be removed when r39616 is merged to the 4.7 branch |
232 | 231 | remove_action( 'wp_head', 'wp_custom_css_cb', 101 ); |
233 | 232 | } |
234 | 233 | |
diff --git wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/classes/wordcamp-coming-soon-page.php wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/classes/wordcamp-coming-soon-page.php
index c054aa5..3d2873c 100644
|
|
class WordCamp_Coming_Soon_Page { |
73 | 73 | wp_dequeue_style( $stylesheet ); |
74 | 74 | } |
75 | 75 | |
76 | | remove_action( 'wp_head', 'wp_custom_css_cb', 11 ); // todo compat with WP 4.7. this line can be removed when r39616 is merged to the 4.7 branch |
77 | 76 | remove_action( 'wp_head', 'wp_custom_css_cb', 101 ); |
78 | 77 | } |
79 | 78 | |
diff --git wordcamp.org/public_html/wp-content/plugins/wordcamp-site-cloner/includes/source-site-id-setting.php wordcamp.org/public_html/wp-content/plugins/wordcamp-site-cloner/includes/source-site-id-setting.php
index aa300b2..70026b7 100644
|
|
class Source_Site_ID_Setting extends \WP_Customize_Setting { |
34 | 34 | add_filter( 'safecss_skip_stylesheet', array( $this, 'preview_skip_stylesheet' ), 15 ); // After Jetpack_Custom_CSS_Enhancements::preview_skip_stylesheet() |
35 | 35 | |
36 | 36 | // Disable the current site's Custom CSS from being output |
37 | | remove_action( 'wp_head', 'wp_custom_css_cb', 11 ); // todo compat with WP 4.7. this line can be removed when r39616 is merged to the 4.7 branch |
38 | 37 | remove_action( 'wp_head', 'wp_custom_css_cb', 101 ); |
39 | 38 | } |
40 | 39 | |