Forum Replies Created
-
AuthorPosts
-
admin
KeymasterHi
What you have mentioned about the sequence is correct. Regarding the tag option, eStore’s convertkit addon doesn’t have the tagging option for the product at the moment. I will look at adding the tag support to the eStore’s convertkit addon soon.
June 4, 2019 at 6:19 am in reply to: Member Signup Scenario 3 Extended with WP eStore Redirect back to checkout #79580admin
KeymasterFor an existing paid member, why do you want to redirect them to the checkout page when they login? They will first log in, then browse to the page where the payment button is and do the purchase. Since they are already a member, they can do the purchase without going through the same process a NEW member has to go through.
You can add a link to their dashboard page that points to the page with the payment buttons. So they can easily to to the payment page from the dashboard page.
You can also create special links to the login page that overrides the redirect when clicked on that particular link. See the following two sections from the following page:
1) Create a Custom Link to the Login Page to Redirect to a URL
2) Create a Custom Link to Override the Login Redirection
Automatically Redirect Your Members to a Page After They Login
From your question, I feel like you are saying that sometimes the plugin should magically redirect a paid member to the payment page but sometimes they should be redirected to the dashboard page. That will be a problem. The intention of the redirection (when it will be redirected where), needs to be differentiated and handled using messages and guides that you put on your site.
You can have a separate payments page that you create for existing members only. So you can have a different set of instructions for them to follow. Then on your landing page, you can put a message that says something like:
#New users should follow this …
#Existing paying members should following this …
June 3, 2019 at 7:50 am in reply to: Member Signup Scenario 3 Extended with WP eStore Redirect back to checkout #79578admin
KeymasterThe first thing that needs to be clear is the “after login redirection”.
Automatically Redirect Your Members to a Page After They Login
For each of your membership levels you need to have an “after login redirection” page. This will ensure that ONLY users who are a membership level that needs to buy something is getting redirected to the checkout page.
Other members who will be on a different level (meaning they are already a paying member) will have a different after login page. So when they log in, they won’t go to the checkout page.
So my question is, do you have a different after login page setup for each of your membership levels?
June 3, 2019 at 4:03 am in reply to: eStore – can't download the file after receiving the link #79537admin
KeymasterGlad to hear that.
May 30, 2019 at 9:35 am in reply to: Bitly after purchase link leads to page with non-sensical code #79577admin
KeymasterTest the download without the link shortener option just to isolate if the issue is coming from there.
Also, try the different download methods to see if one of those can handle this better on your site. Please see the following post:
https://support.tipsandtricks-hq.com/forums/topic/wp-estore-download-methods
Try the different methods to see what kind of result you get.
admin
KeymasterThere is some kind of a lightbox layer coming from another plugin or theme that is causing this.
Can you please do this test to see if there is a plugin that the lightbox layer is coming from?
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
May 29, 2019 at 6:07 am in reply to: Disabled Google Recaptcha from WP E-member. Still asking for recaptcha #79575admin
KeymasterThe error message you shared doesn’t seem to be present in the WP eMember plugin (I just did a search for that message). It could be coming from another plugin.
Can you please do the following test to confirm:
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
May 29, 2019 at 6:04 am in reply to: How to trigger a custom process when a user is moved of Membership level #79573admin
KeymasterWe have an action hook that gets triggered when a member’s membership level gets changed.
The name of the action hook is: emember_membership_changed
Below is an example of how to use this action hook:
add_action(’emember_membership_changed’,’my_custom_tasks_for_level_change’);
function my_custom_tasks_for_level_change($args){
$member_id = $args;
$old_level = $args;
$new_level = $args;
//TOOD – do something here
}
Are you a developer who is a little bit familiar with WordPress plugin development?
admin
KeymasterThank you. I have just added that code a week or so ago. So this should be taken care of.
admin
KeymasterThank you. I have just added that code a week or so ago. So this should be taken care of.
admin
KeymasterThank you. Can you please check if the following block of code exists in the update.php file in your version of eMember?
//Update the account subscription start date if applicable
if (!empty($subs_start_date)){
emember_update_subsc_start_date($member_id, $subs_start_date);
}
admin
KeymasterCan you please share the test user login details so I can log in using my browser and inspect the page? Maybe there are some JavaScript conflicts on the page.
May 28, 2019 at 6:25 am in reply to: eStore – Encrypted Download Links Not Working with Mobile Devices #79558admin
KeymasterLets try the different download methods to see if one of those can handle this task better on your site. Please see the following post:
https://support.tipsandtricks-hq.com/forums/topic/wp-estore-download-methods
Try the different methods and test on a mobile devices to see what kind of result you get.
admin
KeymasterIf you are using the following option, Then you can use the standard WordPress login for your users on the site (So you can use anything that handles the standard WP User login):
May 26, 2019 at 5:04 am in reply to: eStore – Encrypted Download Links Not Working with Mobile Devices #79555admin
KeymasterIs it mostly android or ios devices that are having the issue? What is the extension of the file that you are giving to the users?
-
AuthorPosts