Forum Replies Created
-
AuthorPosts
-
adminKeymaster
You need to show that 503 error to your hosting provider. That URL seem to be triggering a rule on that server which is treating it as a “maintenance activity”. You hosting provider should be able to solve that. Then when you can see your WordPress page by going to that URL, we can check if there is any particular issue from the plugin’s side.
adminKeymasterI will take a look at your site. I have sent you an email for it.
adminKeymasterI am going to look inside the site. I have sent you an email for it.
adminKeymasterYour script has some coding error somewhere (not necessarily on the line it is complaining about). Some of these PHP errors are a little bit cryptic if you are not a PHP developer. I thought you are a PHP coder.
It will need to debugged to see where things are going wrong. This is beyond the scope of this forum. You will need to use the following option for customization like this:
adminKeymasterDid you empty your browser cache to make sure it is loading the NEW javascript file? Empty the cache and force refresh the page to make sure it is re-loading the new file of the addon.
adminKeymasterTahnk you. I have applied a fix for the advanced variations addon. Please download a new copy of this addon from the downloads page and use it:
https://support.tipsandtricks-hq.com/forums/download-addons.php
adminKeymasterCheck that a user is logged-in before calling that “emember_check_all_subscriptions_expired()” function.
So try something like the following:
<?php
if ( wp_emember_is_member_logged_in() )
{
//We have a logged-in user. So now we can check if his account is expired or not.
if ( emember_check_all_subscriptions_expired() ) {
//The user is logged-in but account has expired.
//Show a message to them.
}
}
?>adminKeymasterBelow is an example of what you can use to show something to “non-logged” visitors:
<?php if(!wp_emember_is_member_logged_in()) { ?>
//Place your content that is shown to visitors who are not logged-in
<?php } ?>To show a message to users who are logged-in but membership expired, you can use the following:
<?php
if (emember_check_all_subscriptions_expired()) {
//The user is logged-in but account has expired.
//Show a message to them.
}
?>The following page has some useful function references:
https://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-miscellaneous-tweaks-248
adminKeymasterI don’t think clickbank allows you to a full checkout that sends a proper IPN with the “demo” option. Clickbank doesn’t have a fully function “sandbox” like PayPal or Stripe has. Something to keep in mind when testing with Clickbank.
Which IPN notification version of Clickbank did you set for that? Are you using version 6.0?
August 7, 2020 at 4:57 am in reply to: WP eMembers issues with auto subscribing to MailPoet list #80833adminKeymasterI will take a look at your site to what I can find. I have sent you an email for it.
August 6, 2020 at 2:23 am in reply to: WP eMembers issues with auto subscribing to MailPoet list #80831adminKeymasterThank you. Lets try to find why that error is happening. Have you specified any custom field requirement for this particular MailPoet list? That will cause an error since our plugin will only submit email and name value.
Also, edit the membership level one more time and verify that the “Autoresponder List” field contains the correct MailPoet List ID value.
August 5, 2020 at 3:06 am in reply to: WP eStore – Buyer not receiving email after purchasing digital product #79455adminKeymasterAs always, email issues are completely external to our plugin. It’s an issue with your mail server of the hosting. You need to ask your hosting provider as to why the email are not getting sent our from the mail server correctly (or why it is not getting delivered).
adminKeymasterI have updated the WP eStore plugin so it can accept the “space” character as the value of the thousand separator field. Please load a fresh new copy of the eStore plugin now to get this new change:
https://support.tipsandtricks-hq.com/forums/topic/re-install-or-load-a-fresh-build-of-the-plugins
August 5, 2020 at 2:37 am in reply to: WP eMembers issues with auto subscribing to MailPoet list #80829adminKeymasterEnable the debug option in the eMember settings menu. Then do another test. Share log file’s entries related to the autoresponder signup. Lets see if there is any errors there.
August 5, 2020 at 2:32 am in reply to: Simple Cart not redirecting to PayPal using Safari on iPhone #80826adminKeymasterI have tested the simple cart plugin with the customer input addon on an iphone using safari and that works fine. So this is an issue specific to your site. Somewhere there is a conflict.
Just to be sure, load a fresh new copy of the customer input addon and make sure the simple cart plugin is updated to latest:
https://support.tipsandtricks-hq.com/forums/topic/re-install-or-load-a-fresh-build-of-the-plugins
Next, turn off that “Open PayPal Checkout Page in a New Tab” option in the settings of the Simple Cart plugin (to make sure safari is not stopping the new window opening).
Empty any caching and then do a test. Do you see any difference?
-
AuthorPosts