nelga
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Help] Hide the options for Editor and less rolesNot sure if it’s helpful for you or anyone else, but I wanted to hide this stuff from Editors too.
I ended up modifying the code from @nathaningram in this post to also hide the re-ordering options and clean up the menu a little.
Simply open up the functions.php for your child theme and paste in the following:
// Hides WP Help Functions for Non-Admins function ni_hide_wphelp_actions() { echo '<style type="text/css"> #cws-wp-help-actions {display:none !important;} #cws-wp-help-document .post-edit-link {display:none !important;} #cws-wp-help-listing-wrap .sort-handle.ui-sortable-handle {display:none !important;} #cws-wp-help-listing ul { margin:10px 0 0 0 !important;} </style>'; } if ( ! current_user_can('administrator') ) { add_action('admin_head', 'ni_hide_wphelp_actions'); }
Forum: Plugins
In reply to: [WP Help] Whitespace above embedded videoHaving the same issue here. Absolute positioning seems to overlap content beneath the video. Floating left seems to kinda fix the issue, albeit without padding below.
Forum: Fixing WordPress
In reply to: Admin Left Menu OverlapUnfortunately I’m experiencing this in the newer Chrome v46 (beta) too.
Forum: Plugins
In reply to: [Yakadanda Instagram] Logged in but doesnt show image?Seems to be working for you now… what did you do to fix it?
Forum: Networking WordPress
In reply to: Rewriting the URL to a specific SiteHey Mika,
Thanks for that. I’ve actually attempted to convert the /coolstuff into my main site, however it doesn’t seem to take hold. It was via the config file – changing the site/blog id to #24 (the one for coolstuff).
Is there anything else to this process I’m missing?
Forum: Networking WordPress
In reply to: WP Network Themes – Usage & RestrictionWicked! easy as pie when you know what to do!
Many thanks for your help.