Tagged Questions
0
votes
2answers
56 views
Multi Site Setup, Child Themes, Getting Style Sheet Directory
As the title says, I have a multi-site setup and the apperance is customized with child themes.
The main site: themainsite.com
Secondary site foo.com
When you look into the source code of ...
0
votes
1answer
41 views
Converting a theme to a child theme in a network
I'm converting a few themes to children of another theme. I want the themes to have the same name as before, and I'd like the change to be transparent to the users of my blog network.
When I replace ...
0
votes
1answer
451 views
HTTP Error when uploading images over specific dimensions
Hello I have a reseller account with one wp 3.5 multisite on a shared hosting.
Suddenly I can't upload photos after some random dimensions(It uploads the small sized ones just fine, but it has ...
0
votes
1answer
160 views
Subsite theme mystery man replacement with Buddypress on main site
I have a multi-site install with buddypress on the main site. In the buddypress theme I've been able to override the default 'mystery-man' avatar using my custom buddypress theme. I simply have an ...
2
votes
1answer
108 views
Wordpress language switcher
Is there an easy way I can switch between languages (perhaps with some flag icons) on a single Wordpress site? Can this be done with 2 content editors on the same page, or will I have to resort to a ...
0
votes
1answer
99 views
Custom link color or stylesheets
I'm developing av theme for my WPMU users and are wondering is there a function for choosing the colors on the links?
The same way Wordpress lets you change the background-color or header-images. ...
1
vote
1answer
112 views
Having separate plugins and themes folder for multi-site setup
My multi-site setup uses sub-directory. I am creating one plugin + one theme to customize each of the sites. Is there any way to have separate plugins and themes folder per site like so or something ...
1
vote
2answers
160 views
Network: retrieve a list of latest posts
I need to list all the latest x posts from the whole Network in my WordPress Network.
I am already using the Sitewide Tags plugin to collect all posts in a separate blog, but I also need to list the ...
2
votes
2answers
222 views
Same footer on all multisites blogs
There is any way of using the main site footer (blog id =1) on all the network sites.
I want to have the same footer in all the network.
On the main site i got a theme and the child sites created by ...
0
votes
1answer
452 views
Is it a bad practice to use switch_to_blog in the frontend?
From Wordpress Codex (although related to the same function in WPMU and not WP3.0+):
http://codex.wordpress.org/WPMU_Functions/switch_to_blog
it says:
This switch is to be used for internal and ...
3
votes
1answer
1k views
How to set permalink structure via functions.php
I'm setting up a Wordpress Network and wanted all new sites to have the same permalink structure (i.e. "/%year%/%monthnum%/%postname%/"). I'm wondering if this is possible to do via hooks or hacks in ...
2
votes
1answer
128 views
Excluding a page with a certain name from wp_page_menu
A client of mine has a WP multisite network of sites which all use the same template. This template uses wp_page_menu. I just added a mobile version of the template by using a certain plugin. It will ...
0
votes
2answers
2k views
Featured Image meta box not showing up
I have featured images switched on in my theme:
add_theme_support('post-thumbnails');
set_post_thumbnail_size(256,128, true);
add_image_size('icon', 128, 128, true);
but the Featured Image box ...
3
votes
3answers
2k views
Can You Export Theme Settings From WordPress Multisite?
I do local WP development on a WordPress Multisite instance. What is the best way to move theme settings from there to the live instance? By theme settings I am talking about widgets and theme ...
0
votes
1answer
552 views
How to get blog-id of an MU site from functions.php
How can one determine, from functions.php, the blog-id of the site (or alternately, the path to the media directory)?
2
votes
1answer
83 views
How to test for MU via functions.php?
What is the call to determine, from a theme's functions.php whether the site is an MU site or not?
Updated with answer:
$dir =
is_multisite() ? ...
0
votes
2answers
279 views
Where do files uploaded via Media Manager get stored in MU?
Standard WordPress sites, at least of the versions of WP I've tested, store files uploaded via the Media Manager under wp-content/uploads/
Where do these same files get stored in MU sites and how can ...
0
votes
1answer
974 views
Make theme settings support multisite enabled (WordPress Mu) site
recently I found a problem is that all custom theme settings written by theme author are not working for a multisite enabled site. I've checked several themes and thought this workaround may help:
...
0
votes
1answer
138 views
how or where wordress collect unlogged user session
i see the pattern in some theme where we can collect session of unlogged user. for example, in a comment form: After user commenting, user can see that the their comment is waiting for a moderation.
...