wealthy
Forum Replies Created
-
The fields that show up there depend on the payment gateway selected.
For example, PayPal Express does not require any xtra fields because they’re collected at PayPal instead.or you can use some CSS to remove any other fields
Also remember a USERNAME is required as these are linked to the wordpress User profiles.
So at a bare minimum you need username and password
and an email address for information to be sent to.If you just use a email address, how can they log in again later..
If you sign up with just an email address, then I can use your email address to gain access..
Not a good idea
Yes this plugin is the membership side of anything.
You then give access to what you require for that level of membership. Each page you create and an option to restrick the page/ product etc etcGood Luck
Forum: Plugins
In reply to: [Stream] "last_chunk" setting was updatedyes seems to be a Ithemes Security thing.
thanks
not that is wrong…
when code is asking for some words, then it needs to be exactly the same..The same would apply for passwords.
if you put in qwert and then used QwertY, they are 2 different passwords…
Dont look at it ‘technically’. look at it as 2 different sets or numbers and letters..
in what way are they case sensitive.
I just tested and they only way I can get it to error is to use a capital letter in one email field and lower case in the other.
Both fields need to be exactly the same.
so if you use
MyEmail@domain.com
and
myEmail@domain.comthese 2 fields are not exactly the same
There is a Paid Addon called Purchase Access to a Single Page
How it Works
Admin designates a post as an “addon package” by setting a price for access and selecting which membership levels can purchase the package.
For users without access, the page will show a link to purchase at the bottom of the page. For users with access, the page will chose the full page/post content (content after the “more” tag).
You can optionally define a global expiration for add-on packages (i.e. 7 days) and level(s) that have “all access”.Maybe this would work for you..??
You also might want to view this page
That link gives a Error 404 – Page not found!
Forum: Plugins
In reply to: [Paid Memberships Pro - Mailchimp Add On] It doesn't add to the lists!!Hello, see if this code snippet will help you to restrict specific email signups…
function restrict_email($value) { $invalid_emails = array("yahoo", "gmail"); $email = $_REQUEST['bemail']; foreach($invalid_emails as $invalid_email) { if(!strstr($invalid_email, $email)) { global $pmpro_msg, $pmpro_msgt; $pmpro_msg = "Please enter a business email address"; $pmpro_msgt = "pmpro_error"; $value = false; } } return value; } add_filter('pmpro_registration_checks','restrict_email', 10, 1);You will have to specify the invalid emails by setting them in the 3rd line. You can paste this into your active theme’s functions.php file or create a customization plugin. Hope this helps.
Try to remove this complete plugin. first via plugin directory.
then add it again and try to activate it..
As I mentioned, we are looking into this..
Please bear with us..We will look into this and see if there is a problem on our side.
Until then It wont take much for you to use that plugin and write the emails in French if this is urgent for you
thanks
What version are you using.?
Version PMPro Update 1.8.4.5 has had an enhancement
ENHANCEMENT: French translation updated and now includes email templates.you can use the Email Templates add on
https://wordpress.org/plugins/pmpro-email-templates-addon/How it Works
This plugin adds a new admin page under Memberships > Email Templates. From this page you can select a template to edit from any system email included in Paid Memberships Pro. Once selected, each template’s subject line and body text can be modified to your needs. A list of included variables (i.e. !!name!! or !!user_email!!) is provided for easy templating.
You can also opt to disable the distribution of any single system email by checking the “Emails with this template will not be sent” option.
hope this helps.
Yes..
create your posts and on the right side put a tick in the Require Membership box.this will restrict the viewing to those that have signed in only