belinde
Forum Replies Created
-
Forum: Plugins
In reply to: [VolleyTNT] [Plugin: VolleyTNT] TranslationYou can mail me at:
f dot traversaro
on gmail.Forum: Plugins
In reply to: [VolleyTNT] Players and clubsUhm… any hint? Check if on the database exists the tables for the plugin: they are prefixet with volleytn_ (e.g.: wp_volleytnt_*). Or check the AJAX call to see if there is any error message.
For the translations, what are them?
Forum: Plugins
In reply to: [VolleyTNT] [Plugin: VolleyTNT] TranslationOf course you can!
Forum: Plugins
In reply to: [VolleyTNT] [Plugin: VolleyTNT] ProblemI’ve uploaded a new version (0.1.1) that would fix this error. It was a wild whitespace at the end of the file
core/form.php
. Sorry for the error!Would you please share your translation? I’ll be happy to include it in next release of the plugin! (but I don’t know when I’ll do it, unfortunatly)
Forum: Plugins
In reply to: [VolleyTNT] [Plugin: VolleyTNT] Hows this goingI’m SO very sorry! I’ve read your message only now… BTW I’m uploading right now a beta version, only in italian, whith all the basic features (and they are A LOT).
I hope this can help you…Forum: Plugins
In reply to: [Plugin:InsiteLogin] W3C validation problemsorry about that, i’ve read only now… I’m working on next release, i’ll triple check my tags!
Forum: Plugins
In reply to: [Plugin: InsiteLogin] Works with Register Plusread and understood! I’m going to test in next days, but I’ll have no time for a new release… I hope to do something before 6 january. Can you say me something about your server? is apache, iis, other? And what version of WP?
Forum: Fixing WordPress
In reply to: [user-photo] Remove photo approvalI dislike editing the plugins, ’cause problems on updates… I created instead a new plugin with only these few lines:
add_action( 'profile_update' , 'auto_approve_photo' , 1000 ); function auto_approve_photo() { global $current_user; if ( defined( 'IS_PROFILE_PAGE' ) ) { update_usermeta( $current_user->ID , 'userphoto_approvalstatus' , USERPHOTO_APPROVED ); } }
Appending action with priority 1000 make the update running after userphoto_profile_update() but before userphoto_display_selector_fieldset(), so no warning about approval will be displayed to user!