Forum Replies Created
-
AuthorPosts
-
KhaledMember
$data variable should be return at the end of filterContent function, like:
…
$data = str_replace( ‘%ZIP_CODE%’, @$user->zip_code, $data);
$data = str_replace( ‘%NEWSLETTER%’, @$user->newsletter, $data);
return $data;is it there?
Thanks.
KhaledMemberIn order to change date format you need to edit two files.
Please follow those steps:1. Open user-meta/views/generateForm.php by text editor (through ftp client)
2. Scroll down to buttom, Find those two lines:
$(“.um_datetime”).datetimepicker({ dateFormat: ‘yy-mm-dd’, timeFormat: ‘hh:mm:ss’ });
$(“.um_date”).datepicker({ dateFormat: ‘yy-mm-dd’ });
change ‘yy-mm-dd’ to ‘mm-dd-yy’
3. Save changes.
4. Open user-meta/assets/js/jquery/validationEngine-en.js
5. find “date” section (line number 72 in version 1.1.1),
remove or comments:
“regex”: /^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/,
add:
“regex”: /^(0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])[\/\-]\d{4}$/,
6. find “datetime” section (line number 82 in version 1.1.1),
remove or comments:
“regex”: /^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])\s?([01][0-9]|[2][0-4]):[0-6][0-9]:[0-6][0-9]\s?$/,
Add:
“regex”: /^(0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])[\/\-]\d{4}\s?([01][0-9]|[2][0-4]):[0-6][0-9]:[0-6][0-9]\s?$/,
7. Save changes.Keep in mind, you should keep backup your updated file before user-meta version update. unless, those file will be overwrite with new version files.
Thanks.
March 5, 2012 at 1:37 pm in reply to: Integrate with Mailpress Mailing List through Registration #827KhaledMembersounds good…
KhaledMemberFor now this feature is not available, This is under upcoming feature list. Will be available soon.
Thanks.
March 5, 2012 at 1:19 am in reply to: Integrate with Mailpress Mailing List through Registration #822KhaledMemberMailPress integration is not currently in our development list. We will try to add this feature at any future version.
Thanks.
KhaledMemberHello Joy,
Glad to here that you like our plugin. Thank you for using User Meta. We will take care of your suggestion.Regards
Khaled SaikatKhaledMemberGo to Settings >> General
check the checkbox that is saying “Anyone can register”Thank You.
February 26, 2012 at 12:45 am in reply to: Profile Page Not Working & First and Last Name Not Saving #787KhaledMemberYou can use same form(being used in registration) or different form for profile page.
Thanks.
February 26, 2012 at 12:28 am in reply to: Profile Page Not Working & First and Last Name Not Saving #785KhaledMemberI think any other plugin which is using registration hook is conflicting with user mata pro, please try to temporarily disable similar types of plugin and try.
Thanks.
February 25, 2012 at 12:54 pm in reply to: Profile Page Not Working & First and Last Name Not Saving #783KhaledMember1. First and Last Name should saved upon registration if you use WordPress default field. Please post your url here to let me check.
2. [user-meta type='profile' form='your_form_name'], replace your_form_name with the name of your form you have created from User Meta >> Forms Editor.Thanks.
KhaledMemberPlease follow those steps to enable height property for paragraph:
1. Download and extract files.zip from http://user-meta.com/files/2012/02/files.zip
2. Go to /wp-content/plugins/user-meta/views/ directory by any FTP client.
2. Replace /wp-content/plugins/user-meta/views/field.php with field.php
3. Replace /wp-content/plugins/user-meta/views/pro/generateField.php with generateField.phpPlease let me know if it works for you.
Thanks in advance
Khaled SaikatKhaledMemberPlease read following documentation.
KhaledMemberHi Luke,
For now you can assign class name to field and write your own css (style.css from theme directory) to make them two column.And Thank you for your suggestion.
Reards
Khaled SaikatKhaledMemberHi Luke,
Thank you for your nice request. We will try to add some membership feature in user-meta at future.Regards
Khaled Saikat -
AuthorPosts