ExNube
Forum Replies Created
-
Forum: Plugins
In reply to: [Audio Player] Docs tips.Can u say what you guessed bro???
Please?
Forum: Networking WordPress
In reply to: Super Admin Showing as User on All New BlogsJust curious… What is the site showing in the settings for email? I have found that transfering admin status to another email requires an email confirmation…
Forum: Plugins
In reply to: [Author Category] [Plugin: Author Category] Custom taxonomieslulz
Forum: Plugins
In reply to: [Author Category] [Plugin: Author Category] Default setting for new users?Awesome plugin bro! and thx for the tip!
>>>
Set the default category for new users with the Author Category plugin:add_action(‘user_register’,’set_default_cat_for_user’);
function set_default_cat_for_user($user_id){
$default_category_id = 2; //change 2 with your default category id
update_user_meta( $user_id, ‘_author_cat’,$default_category_id);
}Forum: Networking WordPress
In reply to: Banned Names list ignoredCan you post link to where you are following trac???
thanks
Forum: Plugins
In reply to: [Comment Images] Images in edti commentI do see that it stores two photos… Is there anyway to discard the original before closing the function?
Forum: Plugins
In reply to: [Comment Images] Images in edti commentTom,
I am working on integrating your information here:
http://tommcfarlin.com/programmatically-resize-images/Do you have any tips? I don’t want my users to be able to upload HUGE images.
Thanks.