Forum Replies Created
-
AuthorPosts
-
wzp
ModeratorThe note fields are “1 per member,” regardless of the number of levels they belong to. To achieve the 1:n:1 (member:level:note) functionally desired, requires a major rewrite of the plugin. You have the option of requesting a custom work order quote:
June 20, 2022 at 7:07 pm in reply to: How to get all of PayPal’s Payment Options To Appear On My Checkout Page #84468wzp
ModeratorWhen the buyer clicks the checkout button; control should transfer to PayPal, and the appropriately available options should appear. This of course assumes, that the buyer is logging into their PayPal account, when they are transferred to PayPal.
wzp
ModeratorYou would manually add the member, using Mailchimp:
https://mailchimp.com/help/add-single-subscriber-audience/wzp
ModeratorThere is an “easy” and a “hard” solution to what you are asking for:
- “Hard” — When you design a form, using the Form Builder, it stores the design specifications for your forms in the MySQL database; and when the form is displayed, those specifications are interpreted by a p-code like system, that dynamically constructs the form code. It is very difficult to modify the addon, to work the way that you would like it to.
- “Easy” — Because your dropdown choices are known in advance (Option1, Option2, et al); at the appropriate point in your own code, simply retrieve the field “text value” and run it through a CASE statement, that will transliterate the human-readable dropdown selection to whatever desired numerical value is required.
In the cases where you are using multiple values for the same dropdown item, because you are using dirrent forms for each membership level, simply have a hidden “level code” field as part of the form. You’d then use a nested IF/CASE statement, similar to:
IF level-code = 1 THEN
CASE
ELSE IF level-code = 3 THEN
CASE
wzp
ModeratorSo, for example; you want to indicate that:
Member “Joe” is “President” of membership level “Android Club”, and “Secretary” of membership level “iPhone Club” ???There is only 1 admin note field, per member.
wzp
ModeratorBecause you already have the Form Builder Addon, you <en>could add a read-only text field to each member’s profile; called “Role.” Customizing the admin menu will cause you to not be compatible with future plugin updates.
wzp
ModeratorIs this what you want to kdo?
May 31, 2022 at 3:26 pm in reply to: eMember Profile Extended AddOn doesn’t show multiple membership levels #84430wzp
ModeratorPlease try this:
[emember_extended_summary_list fields="user_name,first_name,last_name" levels="2" 2nd_levels="2"]Paste the shortcode in a shortcode block so it doesn’t have any hidden formatting code there (from the copy paste).
wzp
ModeratorAre you trying to do this?
May 27, 2022 at 9:16 pm in reply to: Download Folder Protection Login Form Blocked by Browser #84421wzp
ModeratorAre the affected members accepting eMember’s login cookies?
wzp
ModeratorAnyway I am collecting all the course fees upfront and not as subscription. So even if they cancel there is no refund involved. But do they have the option to cancel? If so, from where? Which page?
Because you are not offering refunds… for all practical purposes, the following, on how a user can self-delete their membership will work:
Cancel Membership from wp emember / Unsubscribe from wp emember
May 20, 2022 at 4:06 pm in reply to: E-Book test purchase does not send out email for download #84406wzp
ModeratorI still can’t upload epub files, but sending out downloadable zip file works for now.
The uploading method you described uses the WordPress file uploader. WordPress restricts the file types that you can upload:
https://wordpress.com/support/accepted-filetypes/
The recommendation is to use FTP (aka Filezilla) to upload the product files, to your product file directory.-
This reply was modified 3 years, 7 months ago by
wzp.
May 19, 2022 at 3:28 pm in reply to: E-Book test purchase does not send out email for download #84399wzp
ModeratorBut there is no email for e-book download.
When you edited the email body, for the email that gets sent to the buyer; did you remember to include the {product_link} mail tag?
Also, my e-book is in epub format – this format was not accepted
The plugin does not restrict the kinds of files that can be downloaded or uploaded. Please provide more information about the file. Specifically, how are you uploading it, whether or not the upload was successful, and if you are able to successfully use the Admin Functions to manually create a working download link.
wzp
ModeratorI have contacted the developer.
- “Hard” — When you design a form, using the Form Builder, it stores the design specifications for your forms in the MySQL database; and when the form is displayed, those specifications are interpreted by a p-code like system, that dynamically constructs the form code. It is very difficult to modify the addon, to work the way that you would like it to.
-
AuthorPosts