in network setup super admin has the tinyMCE buttons and the regular admin has not

in mine network setup, the super admin has the ability to see the tinyMCE editing buttons in the option page, but when i switch to a regular adimin, i can see only the HTML editing buttons (the “rich text”). what can be the reason for that? i can find any thing in the functions.php that … Read more

Multisite network admin – URL / redirect error

I followed this guide on how to set up a WordPress installation that is optimized for git deployment. Basically, WordPress is moved into a subfolder called wordpress, index.php and wp-config.php are moved out of the subfolder, as well as wp-content. To make that work, the path to wp-blog-header.php is adjusted, as well as the path … Read more

How to test for Super Admin

I have the following code in my mu-plugins.php file and the is_super_admin() function does not correctly result in true. I am running v4.2.4 function check_for_superAdmin() { if ( is_super_admin() ) { echo ‘I\’m a Super Admin !’; exit; } } add_action( ‘wp_login’, ‘check_for_superAdmin’ ); Can anyone see a reason why? Notes: I login at http://example.com/wp-admin/network … Read more

Problem in Internationalizing a plugin built for network level usage

Context: I have created a plugin that is enabled only at the network level and it handles certain synchronizations between the child sites. As it is a network level plugin, it has its menu added to the network dashboard instead of the admin dashboards of child sites. Problem: I have implemented internationalization in the plugin … Read more

Setting up a multilingual wordpress site

I am trying to set up a multilingual site using wordpress. I went through Each language in its own WordPress installation and decided to use this option: Plugins like Multisite Language Switcher and the newcomer Multilingual Press link together separate WordPress network (multisite) installations for each language by pinging back and forth.. Now I installed … Read more

WordPress Multisite: Have the same header and footer of main-blog on all sub-blogs

I’m trying to do the following: I have a Main-Blog and dozens of subblogs. I want all the subblogs to use the same theme (or child-theme, not sure yet) but have the same navigationitems of the mainblog on all subblogs? The same for the footer. How’d I do that? This is my Main-Blog and Landing-Page … Read more

No Network/Super admin after enabling Network

I’ve just successfully enabled networks in WP 3.2.1. However, at top right, I have no Network Admin under my (admin) username. If I go to /wp-admin/network, I receive “You do not have sufficient permissions to access this page.” In my WP_Sitemeta table, site_admins is set to a:2:{i:0;N;i:1;s:3:”My_Username”;}. admin_user_id in this table is blank. In, WP_Usermeta, … Read more