Hi,
in version 1.13.52 the error has not yet been fixed. I was still working with the fix
.fm-not-filled {
margin-left: 0 !important;
}
Best regards,
Olli P.
I added the following security code to function.php. If I comment this out, the switches are there again.
/**
* CT Magazin JSON-API Fix.
add_filter( ‘rest_authentication_errors’, function( $result ) {
if ( ! empty( $result ) ) {
return $result;
}
if ( ! is_user_logged_in() ) {
return new WP_Error( ‘401’, ‘not allowed.’, array(‘status’ => 401) );
}
return $result;
});
*/
With version 4.8.2 the problem does not occur but only from version 4.9.0.