Forum Replies Created
-
AuthorPosts
-
tracedef
ParticipantNever mind, the following works in fuctions.php:
add_filter( 'map_meta_cap', 'multisite_custom_css_map_meta_cap', 20, 2 ); function multisite_custom_css_map_meta_cap( $caps, $cap ) { if ( 'edit_css' === $cap && is_multisite() ) { $caps = array( 'edit_theme_options' ); } return $caps; }
tracedef
ParticipantThank you. All of our sites break when I add that code to wp-includes/capabilities.php. Is there a special way to insert it? Not sure what I”m doing wrong. Also, this code would likely need to be replaced everytime we update wordpress right?
tracedef
ParticipantThe network activated workaround enabling unfiltered_html in multisite tab didn’t have any effect. Where does the first code you listed go? I tried functions.php to no avail.
tracedef
ParticipantThank you Vladimir, you’re always on point with the help!
tracedef
ParticipantI get the same error regardless of how many times I click. I’m able to replicate the issue in chrome and safari.
tracedef
ParticipantThank you so much!!!
tracedef
ParticipantFor the heck of it I just tried the contact form again and still getting the same error .. just a heads up!
tracedef
ParticipantThanks!
-
AuthorPosts