Michael Bishop
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Single Post as HomepageOr you can modify your home.php template to do a custom query where you only fetch the latest post.
Forum: Networking WordPress
In reply to: Fatal error: Call to undefined function wp_get_current_user()I’d check other plugins installed. I’ve not experienced that issue after upgrading several multi-site installs.
Forum: Plugins
In reply to: [Sharedaddy] Sharedaddy – Display Share button before twitter, facebook likeIgnore me, I misread the question. doh!
Forum: Plugins
In reply to: [Sharedaddy] Sharedaddy – Display Share button before twitter, facebook likeCan’t you drag the order of the buttons in the order you want in the “Enabled services” section?
Forum: Plugins
In reply to: [New Blog Defaults] [Plugin: New Blog Defaults] Automated category creationI’m experiencing the same issue.
Forum: Networking WordPress
In reply to: Problems with Network/multisite install 3.0.1You won’t “see” anything if you put plugins in the mu-plugins folder. I failed to mention that you can’t put the whole plugin directory in that one and them work. If it’s a single file plugin, then only put that file in the mu-plugins. If it’s a multi file plugin, you need to put the main file in the root of mu-plugins. You may be better off simply activating the plugins in your plugins directory network wide.
Yes, if your DNS and apache aren’t configured correctly, then your domain mapping won’t work.
I’m not familiar with i-page, so not sure what to suggest as far as configuration.
Forum: Networking WordPress
In reply to: Edit the "newbloguser"Have you checked under SuperAdmin->Options. I believe that’s where the message for new user registration and new sites is located.
Forum: Networking WordPress
In reply to: Multiple domains/dbWP multi-site really isn’t designed with that in mind. There are scripts to allow for multiple databases, but not an individual database for each site, more for scenarios where there are thousands of sites and you want to spread them out.
Forum: Networking WordPress
In reply to: Multisite – SearchI haven’t had a chance to test this myself, but looks promising. http://wordpress.org/extend/plugins/wpsearchmu/
Forum: Networking WordPress
In reply to: Problems with Network/multisite install 3.0.11. Plugins either have to activated on each individual site, activated network wide, or placed in a mu-plugins “must use” directory you create in wp-content.
2. Make sure you have the wildcard DNS set up and have edited your httpd.conf file to have SERVERALIAS *example.com
3. Widgets are specific to each install, they won’t carry over
4. To have site2.example.com be it’s own domain, you need the domain mapping plugin.
Forum: Fixing WordPress
In reply to: How to style [gallery]?To be clear I added
.gallery {clear: none !important;}as well as a few other specific margin/padding/width settings I wanted all with an !important declaration in the theme’s stylesheet. You can add some functions to completely override the inserted CSS and completely write your own, I’ve seen some posts in the forums on how to do that as well.This was just a simple workaround for my own purposes and might help. I’m not a big fan of !important; but I’m also not a fan of inline styling being inserted for me. But a nifty function you get a trade off.
Forum: Fixing WordPress
In reply to: How to style [gallery]?WordPress and the forum aren’t dying. Unfortunately, this is a volunteer forum, and not everyone might know an answer to a question. Please don’t take it personal.
When you say a plugin isn’t an option, do you mean any kind of plugin? I found adding the Cleaner Gallery plugin, it helped. I also found when I was trying to float a gallery to to the right of my content, it was messing up. What I found was .gallery was being set with clear: both; which screwed up my float left and right in my single page layout. I added a clear: none !important; to the theme stylesheet to get around that.
I also used !important in the theme style sheet to override a few other of the inline styles the gallery was adding to change margins and padding.
Hope that points you in the right direction…
Forum: Fixing WordPress
In reply to: How to make a test site?Can’t you set the test subdomain to no-index, ie, Settings ->Privacy -> I would like to block search engines, but allow normal visitors ?
Or set it to registered users if you want to hide it from any prying eyes.
Forum: Themes and Templates
In reply to: Custom menu item not getting current-menu-item class addedThis may be a bug. I’ve discovered it with a default menu widget. .menu-item-home doesn’t also get .current-menu-item when on the page defined in that link.
I’m not using any minify plugin and am experiencing the issue as well. Still sorting out other legacy sitemap files so I’m not ready to give any links.