patricksponte
Forum Replies Created
-
Thank you so much for your help.
Best regards,
PatrickThank you so much for your reply and fix suggestion.
Best regards,
PatrickHello @madalinaruzsa
I’m writing just to let you know that I solved this issue.
I deactivated my PMS and once I started it back all hooks were activated in WP Cron.
I will be monitoring wp cron closer for the next weeks just to ensure that everything is working properly.
Thank you for your help.
Hello, @madalinaruzsa. Thank you so much for your reply.
I already had the newest version (2.8.0) of PMS installed.
As you suggested, I installed WP Crontrol and searched for pms_check_subscription_status in my event list. Surprisely I did not find this specific cron job. Starting with PMS prefix I found only: pms_cron_process_member_subscriptions_payments.
Probably this is the main reason of my issue.
How can I fix this problem? Any thoughts?
Thank you in advance for your help.
Nevermind, guys!
I solved this issue just changing Date Format in WP Admin Painel -> Settings.Thank you!
Thank you for your reply.
I figured out the problem. Actually, I was using shortcode and it was configured to restrict only one plan to see page content. Once I added all ids from membership plans we solved the problem.
Thank you again.
Hello guys,
Reading the code application from GitHub, I figured out what we should change in order to remove these additional permissions.
Do it by your own risk.
Open this file from your wordpress homedir: …/public_html/wp-content/plugins/yith-woocommerce-social-login/includes/hybridauth/Hybrid/Providers/Facebook.php
Between line 18 and 22 you´ll find the following:
/** * default permissions, and a lot of them. You can change them from the configuration by setting the scope to what you want/need * {@inheritdoc} */ public $scope = "email, user_about_me, publish_actions";Remove “user_about_me” and “publish_actions”.
Add two tags: “public_profile” and “user_friends“.
Your line 22 should stay like this: public $scope = “email, public_profile, user_friends”;
Save your file, try again and be happy 😉by default facebook only allow us to receive three parameters:
1 – email
2 – public_profile (id, cover, name, first_name ,last_name, age_range, link, gender, locale, picture, timezone, updated_time, verified)
3 – users_friends (Cya!
- This reply was modified 9 years, 6 months ago by patricksponte.
- This reply was modified 9 years, 6 months ago by patricksponte.