Forum Replies Created
-
AuthorPosts
-
tracedefParticipant
Never 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; }
tracedefParticipantThank 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?
tracedefParticipantThe 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.
tracedefParticipantThank you Vladimir, you’re always on point with the help!
tracedefParticipantI get the same error regardless of how many times I click. I’m able to replicate the issue in chrome and safari.
tracedefParticipantThank you so much!!!
tracedefParticipantFor the heck of it I just tried the contact form again and still getting the same error .. just a heads up!
tracedefParticipantThanks!
-
AuthorPosts