Forum Replies Created
-
AuthorPosts
-
Khaled
MemberYou can use WordPress hock to add timestamp field while registration or profile update. Those are some sample code, add those code to your function.php (under active theme directory)
function addTimestampField( $user_id ) {
update_user_meta( $user_id, ‘timestamp’, time() );
}
add_action( ‘user_register’, ‘addTimestampField’ );
add_action( ‘profile_update’, ‘addTimestampField’ );Those code add new meta field named ‘timestamp’ while new user register or their profile updated.
Thanks.
Khaled
MemberVersion 1.1.2rc2 does not support creating on new site while registration. We are adding more feature on 1.1.2 stable version. We are hopeful to add this feature with 1.1.2 stable version.
Thanks
April 2, 2012 at 8:09 pm in reply to: How to track data enter by the user with Ajax searching from Database? #1029Khaled
MemberUnfortunately user meta don’t have user field searching gui tools. Following link may be helpful for you. http://codex.wordpress.org/Class_Reference/WP_User_Query
Thanks.
April 2, 2012 at 6:09 pm in reply to: Warning message User registration is currently not allowed. #1024Khaled
Membercheck http://user-meta.com/faq/
tyKhaled
MemberCurrently there are no any timestamp filed provided with user meta plugin.
Thanks
Khaled
MemberCurrently, there is no any GUI way to apply own class to submit button. You can put it to feature request.
You can apply your class by hacking php code, to hack php code, follow bellowed instruction:
1. Open user-meta/views/generateForm.php by any ftp client.
2. Find bellowed code:
$html .= $userMeta->createInput( “um_sibmit_button”, “submit”, array(
“value” => $buttonValue,
“id” => “insert_user”,
) );
line 126 for version 1.1.2rc23. add new line:
“class” => “your_class_name”,It may look like following:
$html .= $userMeta->createInput( “um_sibmit_button”, “submit”, array(
“value” => $buttonValue,
“id” => “insert_user”,
“class” => “your_class_name”,
) );
4. Save your changes.Thanks.
Thanks.
Khaled
MemberWith version 1.1.2rc2, without your second issue, all other issue suppose to work correctly. would you please post your site url. For refund request, you need to send an email via contact us.
Thanks.
Khaled
MemberHello Martin,
Thank you very much for your interest about german translation.
We’ll certainly let you know when we start translation process.Regards
Khaled SaikatKhaled
MemberSometime, ajax file upload stop working with js error cause by other plugin, Also with some server configuration. So we decided to add html upload button beside ajax upload while ajax failed. We are currently work on it.
Thanks.
Khaled
Memberyou can send to support@user-meta.com
Khaled
MemberThank you for your reporting. We’ll check and solve this issue asap.
Khaled
MemberHello activmedia,
I don’t have any account in your site to check redirection after login. are you using user meta pro version 1.1.2rc2? redirection issue was solved with version 1.1.2rc2.
We are thinking about to change redirection page selection to custom url. also login,logout and registration role specific redirection will be available soon with user meta pro.if with version 1.1.2rc2, your redirection still not working, please provide us a test account on your site to findout the issue. and if you need custom url redirection instead of page selection, you need to hack some code. let us know if you need it instantly.
Thanks.
Khaled
Memberwhich version of user meta pro you are using?
Khaled
Memberdo redirection issue solve for you?
and if I understand, you needed custom link after login. now only logout link is available.
tnx. -
AuthorPosts