Forum Replies Created
-
AuthorPosts
-
nurMember
i also tested that link and didn’t see any error.
nurMemberfranxiscoflores,
looks like you created a dropdown custom field but didn’t add any option for that field. please follow the guideline in the yellow box at the top of custom field settings page to correctly create the field.
February 6, 2014 at 3:31 am in reply to: How to insert options with commas in Selectbox/Dropdown? #60683nurMemberare you talking about custom fields?
nurMemberspam detection mechanism works based on the mail content and address that mail originated from. it doesn’t know which software generated the mail. All you need to do is to customize mail content. you can do that from emember’s “Email Settings” tab.
many mail servers consider that mails sent from a host are spam if the hostname cannot be looked up. that is nslookup papa.sk should return an ip address, and nslookup <ip address> should return papa.sk.
December 24, 2013 at 9:06 am in reply to: Fancy login password reset diplays behind the page content #59836nurMemberit looks like everything is working correctly. you should clear browser cache to make sure modified css file is loaded from server.
December 24, 2013 at 3:42 am in reply to: Fancy login password reset diplays behind the page content #59834nurMemberif you give me the link to your site then i can investigate little more. it should be easy to fix.
December 23, 2013 at 10:00 pm in reply to: Fancy login password reset diplays behind the page content #59832nurMemberopen css/eMember_style.css file and look for “.emember_modal”. in this css class definition, you will see an attribute called “opacity”. change its value to 1.0
it should look something like this:
Code:.emember_modal {
background-color:#fff;
display:none;
width:350px;
padding:15px;
text-align:left;
border:2px solid #333;
opacity:1.0;
-moz-border-radius:6px;
-webkit-border-radius:6px;
-moz-box-shadow: 0 0 50px #ccc;
-webkit-box-shadow: 0 0 50px #ccc;
}nurMemberwhen you are building a site with wordpress, you should be aware that you may use themes and plugins that define presentation properties using CSS. so if you see something went wrong, you cannot blame a particular theme or plugin without proper investigation. That “alternate grey color” in the form is caused by the theme you are using. our plugin has nothing to do with that. following lines of css code is defined in:
[http://defides16.com/wp-content/themes/simplemag/css/framework.css]
Code:tr:nth-of-type(2n+1) {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.05);
}if you look carefully, you can see that this framework.css file is part of simplemag theme.
nurMemberYou can change it to “inactive” or “pending” ( notice all lower-case letter. remember its case-sensitive) by modifying line number 104 in api/create.php file.
We will update the API to set the status according to the manual approval settings.
nurMemberyou need to remove “alternate” css class from every “tr” tag within the form.
nurMemberyou should be able to do that now. we have added a fix for it.
nurMemberwe don’t support different message for each individual membership level at this moment.
December 1, 2013 at 4:06 pm in reply to: eMember writes commas in mysql database records producing errors. #59356nurMemberin case you are still seeing the error. you can try replacing:
Code:$my_secondary_levels = dbAccess::findAll(WP_EMEMBER_MEMBERSHIP_LEVEL_TABLE,
‘ id IN ( ‘ . $this->userInfo->more_membership_levels . ‘ ) ‘);( line 558 ~ 560 if you have latest version)
with:
Code:$my_secondary_levels = dbAccess::findAll(WP_EMEMBER_MEMBERSHIP_LEVEL_TABLE,
‘ id IN ( ‘ . trim($this->userInfo->more_membership_levels,’,’) . ‘ ) ‘);nurMemberif you look at line 107 through 114 in api/create.php, you should be able to find address fields unless you are using a slightly old version of emember. We recently added those fields.
nurMemberyou can try removing line number 893 in wp_eMember1.php
-
AuthorPosts