Hi, I also meet with such a bug on PHP7.1.
I find this bug is because the array to save the code is not initialized in the plugin.
You can search the code in scripts-n-styles plugin directory
`
$SnS = get_post_meta( $post_id, ‘_SnS’, true );
`
and insert
`
if(empty( $SnS )){
$SnS = array();
}
`
below search occurrences.
-
This reply was modified 7 years, 5 months ago by lubobill1990.