Ben
Forum Replies Created
-
After poking around a little bit more, I found out this is because the plugin walks on the
bloginfofunction. From line 36 insp-core.php:add_filter( 'bloginfo', array( &$this, 'delete_bloginfo_name') , 1, 2 );Unfortunately, it uses this to change the meta titles, so if I comment the line out the plugin becomes ineffective. Isn’t there a better way? Or am I missing something completely?
Same problem here. I would simply replace the title in
header.phpwith my site title (instead of thebloginfocall) except then I would have to do this for each user blog — which is not feasible. I don’t understand why each blog’s site title is stripped upon network activating the plugin (and then replaced upon deactivation, it must be the plugin). I would love to use your plugin, as it appears the best free solution to multi-site SEO, but I’m afraid I can’t until this problem is resolved.Forum: Networking WordPress
In reply to: New WordPress installation under a subdomainIf you’re trying to place a separate install of WP in a subdomain, make sure you’ve registered it with your host. It’s not very hard, usually under your host’s cPanel you’ll find, under “Domains”, a link labeled “Subdomains”. Going through the cPanel wizard, you can create
video.mysite.com, and (usually) a file path will be created — something like/myrootdirectory/video. This is where you want to put your new install of WP. Once you’ve dropped the fresh files into the folder, create a new MySQL database for the install and then visit your subdomain (video.mydomain.com) where WordPress will ask you for your MySQL database and user credentials to create a config file.Unless you have specific reasons for creating an entirely new install of WP, I suggest you create a WordPress Network: http://codex.wordpress.org/Create_A_Network. After following their steps, create a wildcard subdomain in your host’s cPanel (i.e., *.mysite.com) — this will allow you to create as many sites as you want through the WP Dashboard.
Forum: Networking WordPress
In reply to: Subfolder Network in a SubdomainThank you for the reply, Ipstenu!
Based upon you’re experience, I have switched the Networks for WordPress plugin to the WP Multi-Network plugin (I am using the updated “1.3” version by Brian Layman: http://alantait.net/2011/07/27/wp-multi-network-plugin-fix-for-wordpress/ ).
To achieve the desired structure with this plugin, do I need to change my path from “
/” or something?Thank you!
BenOops,
The code I pasted above does indeed work, I just forgot to put it inside of the
whileloop. Once I did that, everything worked perfectly.