DeannaS
Forum Replies Created
-
Forum: Networking WordPress
In reply to: New site default user role – admin to editorOkay, I took a look, and the plugin still works. It’s just not doing what you want it to do because it’s not designed to do what you want it to do. Basically, the plugin changes the role someone is assigned to on the main site. OR, if you select roles for other existing sites AND check the box that says “Add user to blogs” a new user will be added to each of the identified sites with the identified role.
It’s NOT designed to change the role on a brand new blog because that hasn’t been set yet.
I do a similar thing in the New Blog Defaults plugin. You could probably look at the code there and update the new user’s role to editor after the new blog is created. There may be a rule that each blog HAS to have an owner, though. Are you first trying to make some other account the owner? (Not sure if that rule exists. But, it would be logical.)
Forum: Networking WordPress
In reply to: New site default user role – admin to editorI haven’t looked at the plug-in in a while. It might not be up to date anymore. I’ll take a look and see if it works for me.
Forum: Plugins
In reply to: [Collapsing Categories] Doesn't work with custom post types in 3.1.4Okay, I don’t think this has anything to do with 3.1.4 – I think it’s actually a bug with the option:
Expanding shows: Sub-categories and Posts vs. Just Sub-categoriesIf you have it set to sub-categories and posts, then it doesn’t work with custom post types. If you switch it to just sub-categories, it works.
Forum: Plugins
In reply to: [Rich Text Tags] [Plugin: Rich Text Tags] link buttonNote that I might have used the brute force way to do it and there might be a more elegant solution, which I haven’t played with yet.
Forum: Plugins
In reply to: [Rich Text Tags] [Plugin: Rich Text Tags] link buttonI have the solution Zack. I’d be super psyched if you’d officially add it so we don’t have to fork your code. It’s a super easy one-liner. Just add the following in your kws_rich_text_tags function. (I put it on line 62):
add_action( 'admin_print_footer_scripts', 'wp_tiny_mce_preload_dialogs', 30 );You don’t put it into the actual code php page when you’re using shortcodes – you have the users put it into your post content. If you want to do it via php code, then, yes, you’d use the get_custom_post_values(‘Plan’) approach.
The example that I posted? The “key” is “plan”. So you would output it with shortcode like so:
[cft key=Plan]
Forum: Plugins
In reply to: [Custom Field Template] [Plugin: Custom Field Template] Not Working!!!(Though you may have issues with key names that contain spaces. Not sure about that.)
Forum: Plugins
In reply to: [Custom Field Template] [Plugin: Custom Field Template] Not Working!!!Sorry – shortcode should be [cft key=Sidebar Left]
Forum: Plugins
In reply to: [Custom Field Template] [Plugin: Custom Field Template] Not Working!!!Flashpaper – I believe you have to use [cft label=”Sidebar Left”]
In the actual template code. So, in his example code it would be:
[Plan]
type = text
size = 35
label = Where are you going to go?
output = true
Forum: Plugins
In reply to: [Custom Field Template] [Plugin: Custom Field Template] Not Working!!!I wasn’t using it on an earlier version, so I’m not sure if he changed something, but I was able to get the custom fields to display via the shortcode by making sure I had output=true in the template for each field I wanted to display.
Did you add output = true to the template for the items you want to display?
@romik84 If someone else wants to do the work, I’m happy to incorporate it. But, doing it myself isn’t in the schedule right now. Sorry.
Forum: Plugins
In reply to: [Plugin: WPMU Plugin Stats] quick question about usabilityIt looks for the existence of plugin commander to display those settings. If you’ve uninstalled plugin commander, and they’re still showing, it means plugin commander doesn’t uninstall cleanly and database clean up is in order.