Forum Replies Created
-
AuthorPosts
-
December 28, 2012 at 5:13 am in reply to: eMember – customize emember registration form Last Name field optional #52600nurMember
I don’t think you have the latest version.
if settings change reflects on main registration form then it must reflect on the free registration form. this is how it behaves in the latest version. please request for the latest version and make sure you got a different version.
December 28, 2012 at 3:54 am in reply to: eMember – customize emember registration form Last Name field optional #52598nurMemberThanks Jerry.
have you looked at “Settings->Pages/Forms Settings” page in the emember admin panel? there is a section called “Registration Form Fields”. All the fields you possibly see in the registration forms, are there. checking the first checkbox will make the corresponding field shown on the form (keeping second checkbox unchecked makes it optional ) and checking both first and second checkboxes makes it required.
Let me know if this helps.
December 27, 2012 at 10:21 pm in reply to: eMember – customize emember registration form Last Name field optional #52596nurMemberThe feature is added and working perfectly in our testing system. If it is not working as expected on your site we can organize access to the site and look into it.
December 24, 2012 at 11:43 pm in reply to: eMember – Can a user enter their username to reset their password? #52626nurMembercurrently we allow only email for password resetting. Username is not going to work. However we will look into adding this so the user can use the “email address” or the “username” to reset the password.
nurMemberThe plugin has validation that will tell the user those things when they make a mistake. For example, go to the following demo page and type in wrong username or email address and you will see what it does:
http://www.tipsandtricks-hq.com/eMember-demo/members-home/registration
Is this not happening on your site?
December 20, 2012 at 4:48 pm in reply to: eMember – Error: "Invalid argument supplied for foreach()" in Profile Extended #52533nurMemberThat is not usual. I have sent you an email to get access to the site so that we can investigate it.
nurMemberGo to Manage Members menu and edit the “Free Membership” level, uncheck “comments” in “Global Access To” options and check this option for all the other level where you want your customers to be able to comment.
nurMemberwhich version of wordpress are you using? Did you check for plugin conflict?
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
nurMemberin general settings of eMember, there is an option called “Manually Approve Member Registration”. is this something u r looking for?
nurMemberplease request for latest version of eMember and then let me know if the issue exists.
https://support.tipsandtricks-hq.com/forums/topic/wordpress-35-release-update
Best,
December 11, 2012 at 5:04 am in reply to: eMember Google First Click Free Message Doesn't Allow ' apostrophes or html code #52226nurMemberwe’ve added this. we’ll roll out an update soon.
nurMemberhi dorham,
i took a look at the error message screenshot u sent. these messages aren’t generated by emember. these messages are generated by thikbox jQuery plugin. eMember doesn’t use thikbox anywhere. you’ve got something else causing that error in your site.
if you see any other error message, please let me know so I can take a look.
nurMembercan you show me the site url thats having the issues?
November 18, 2012 at 7:05 pm in reply to: eMember: change default Membership Level in Add/Edit Members screen #51511nurMemberno. it comes from database and its sorted in descending order of level id. that is most recently created one comes first in the list.
November 18, 2012 at 6:59 pm in reply to: eMember: make default gender female in Add/Edit Members screen #51503nurMemberYes. Thats possible with a tweak. open add_member_view.php and swap the following line with each other:
Code:<option <?php echo ($editingrecord[‘gender’] ===’male’)? “selected=’selected'” : null;?> value=”male”>Male</option>
<option <?php echo ($editingrecord[‘gender’] ===’female’)? “selected=’selected'” : null;?> value=”female”>Female</option>so after modification, its gonna look like :
Code:<option <?php echo ($editingrecord[‘gender’] ===’female’)? “selected=’selected'” : null;?> value=”female”>Female</option>
<option <?php echo ($editingrecord[‘gender’] ===’male’)? “selected=’selected'” : null;?> value=”male”>Male</option> -
AuthorPosts