If you’re getting the error from topic, desctivate the “JP custom CSS” plugin, it breaks Woocommerce, Customizer and possibly other plugins.
]]>Note: This plugin defines a class named “Jetpack”, but doesn’t actually define all the methods defined by Jetpack.
So other plugins, like WooCommerce may do something like this
class-wc-regenerate-images.php:46
// Not required when Jetpack Photon is in use.
if ( class_exists( ‘Jetpack’ ) && Jetpack::is_module_active( ‘photon’ ) ) {
return;
}
Only, the class does exist, just the “Jetpack::is_module_active” method does not, and boom fatal.
WooCommerce’s fault for checking the class and not the method, I’m submitting there, just this isn’t exactly a rare mistake.
]]>FILE: /wp-content/plugins/jp-custom-css/custom-css/csstidy/class.csstidy.php
———————————————————————————————————————
FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
———————————————————————————————————————
249 | WARNING | Use of deprecated PHP4 style class constructor is not supported since PHP 7.
———————————————————————————————————————
FILE: /wp-content/plugins/jp-custom-css/custom-css/csstidy/class.csstidy_print.php
—————————————————————————————————————————
FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
—————————————————————————————————————————
69 | WARNING | Use of deprecated PHP4 style class constructor is not supported since PHP 7.
—————————————————————————————————————————
FILE: /wp-content/plugins/jp-custom-css/custom-css/csstidy/class.csstidy_optimise.php
——————————————————————————————————————————
FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
——————————————————————————————————————————
50 | WARNING | Use of deprecated PHP4 style class constructor is not supported since PHP 7.
——————————————————————————————————————————
I need to reduce the top/bottom space between sidebar widgets Hemingway theme.
I tried to change the CSS with code
#sidebar-right .widget {
margin: 0 0 2em;
}
but seems to be not change after i save stylesheet.
https://www.stillwatersministries.net
Trying to get the graphic title closer to the “recent posts”
Thanks!
Hello,
I want to contribute and maintain this plugin.
Thanks,
Tony