tmelbs
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Photo Album Plus] Upload photo goes into all multi site albumsone other quick thought.. does this matter if it is activated on a per site or does it have to be network activated ?
Currently I have it on a per site basis
thanks again
Forum: Plugins
In reply to: [WP Photo Album Plus] Upload photo goes into all multi site albumsHi @opajaap
Thank you for such a fast reply – sorry for the multiple (same) questions – it is rare you get such a fast reply here (if you ever get any at all) so I figured if I responded to everyone that had the same issue maybe one of them would get answered.. never figured all 3 would so fast.. thank you..
I have tried to check the owner only and that does not fix the problem.. I have been testing this and it seems to be something that only happens sometime, but not all the time which is making testing very hard to do – every time I think I have it fixed and it seems to test normal it ends up breaking again but I cannot figure out what is breaking it.. do you have any other ideas of things I can check?
Thank you
Forum: Plugins
In reply to: [WP Photo Album Plus] [Plugin: WP Photo Album Plus] Network AlbumsIm currently using the photo album plus 3.0.5 and I seem to have the same issue… do I just have my settings wrong here, how do I use this in multi site so that the images are not being placed in other users photo albums?
Thank you,
Forum: Plugins
In reply to: [WP Photo Album Plus] [Plugin: WP Photo Album Plus] multisite ?Hello,
I am having the same problem here.. I would really like to use this in a multi site but realized it is not working.. any more news on if this is going to be set up so that it can work in a multi site?
Thank you,
Forum: Hacks
In reply to: disable internal linking in 3.1?@ miette49 it was a core hack.. found the file in wp-admin/includes/internal-linking.php
Be sure to back up beofre you do this.
Forum: Hacks
In reply to: disable internal linking in 3.1?Hi Adilai99
Thank you for the reply – I ended up figuring it out by modifying the core file.. You mentioned looking in different forums.. do you mean in ww.wp.xz.cn or somewhere else? I figured since I was looking to use a plugin or hack the core this was a good place to look for help. Please expand on what you mean or where else I can find the answers.. I appreciate the help.
Thank you,
Forum: Hacks
In reply to: Add default text to new articleHello,
I used this code and made a plugin specifying a specific post type and it worked perfect. So then I created another plugin and used the same code but designated a different post type and for some reason only one plugin will work at a time… each plugin works independently of the other one but I cannot activate both at the same time or only one of them will work…
Here is the general code for each…
Post Type A
function preset_content_post_type_a() { global $post; if ( $post->post_content == '' and $post->post_type == 'post-type-a' ) { $default_content_post_type_a = 'my preset content text for post type a'; add_post_meta($post->ID, 'my custom field', 'my value', true); } else {$default_content_a = $post->post_content;} return $default_content_a; } add_filter('the_editor_content', 'preset_content_post_type_a');And now Post Type B
function preset_content_post_type_b() { global $post; if ( $post->post_content == '' and $post->post_type == 'post-type-b' ) { $default_content_post_type_b = 'my preset content text for post type b'; add_post_meta($post->ID, 'my custom field', 'my value', true); } else {$default_content_b = $post->post_content;} return $default_content_b; } add_filter('the_editor_content', 'preset_content_post_type_b');Can anyone help me understand how to get both working at the same time so that when I create a new post with the custom post type these templates will work?
I am running 3.1.1
Thank you very much,
TmelbsForum: Fixing WordPress
In reply to: Adding a “template html” to default Post@mark / t31os – is there any way to define the reminder message for a specific custom post type only?
Thanks
T
Forum: Plugins
In reply to: [Site Template] [Plugin: Site Template] Seems broken with 3.0.4Just a quick follow up.. when I am logged in and I register for a new site then it will work just fine.. keep in mind that does bypass the need for an activation email since I am already a user… It seems like part of the problem we had back here http://ww.wp.xz.cn/support/topic/plugin-site-template-disable-since-4?replies=16
Forum: Plugins
In reply to: [Register Plus] [Plugin: Register Plus] Doesn't work on WPMUI think at this point I am holding off until 3.7 – I def like this plugin the best .. just need it to work with multi site now 🙂
Thanks for such a fast reply – I look forward to 3.8 In the mean time I will work on other site development and features I need between now and then…
Thanks again…
Forum: Plugins
In reply to: [Plugin: Adminimize] Help with “Your own options”@pbuttons – thank you for this.. I am trying to hid things in the post page in the publish meta box – basically I only want them to be able to put it into a draft or publish status and hide the date and other options.. when I use firefox firebug I discover the div’s and classes are layers deep so I am not sure how to properly list them in adminimize to get only specific things in that box to hide… any chance you could help?
Thanks
Forum: Plugins
In reply to: [Register Plus] [Plugin: Register Plus] Doesn't work on WPMU@awarner20 – thanks! I will check it out a bit further – if I end up purchasing it and using it I will keep you posted.. So far it seems to be the ONLY one out there that claims to be working with 3.01 multi site – nothing else is up to speed just yet…
As a free alternative I have come accross this one that seems to be just like the paid one but on first attempt to use with multi site I got a few errors – might be worth looking into though http://ww.wp.xz.cn/extend/plugins/cimy-user-extra-fields/
Forum: Plugins
In reply to: [Register Plus] [Plugin: Register Plus] Doesn't work on WPMU@awarrner20 – I was looking at purchasing that other plugin as well for wp multi site functionality – were you ever able to get it going?
thanks
Forum: Plugins
In reply to: [Plugin: Site Template] doesn't work correctly since .4Mike, That seemed to have worked! So far so good.. I am going to be testing it much more over the weekend – thanks again!
Tom