thomaswild
Forum Replies Created
-
Hello @karine0908,
To better understand the issue at hand, could you please send me a screenshot of the page at Dashboard -> Plugins -> Installed plugins? Please make sure that all of your plugins as well as their versions are clearly visible.
You can use a site like https://snipboard.io/ to share the screenshots.Hello @everthingrelationshipcc,
Thank you for your kind words!Hello @everthingrelationshipcc,
Just wanted to check in, is everything working as expected now?Hello @sosenko,
Thank you for the kind words!
Unfortunately there is no way of restricting a WooCommerce product category.
When it comes to feature you have mentioned, we are not allowed to talk about the paid plugins here. If you wish to have this conversation, please contact us at https://www.cozmoslabs.com/support/open-ticket/Hello @opendrives,
I have forwarded this to our development team and it looks like the filter provided above no longer works as expected.
One workaround to this issue would be to write some custom code that will remove the query string from any redirects happening on your website.Hello @sunnycs121,
Thank you for the kind words!
To better understand the issue at hand to be able to reproduce it on a local instance, I would like to ask you for some additional details.
Could you please describe the way you are triggering the WordPress create post action? Could you include all the parameters you are passing to the hook?
Note: Since this is a public forum, please make sure you hide any sensitive data that might appear in the information I asked for above.Hello @awais1111,
There is no way of redirecting a user to a stripe payment page.
When it comes to failed payments using Paid Member Subscriptions, your users can retry payments by navigating to their account page (the page with [pms-account] shortcode on it).
You can read more about this here: https://www.cozmoslabs.com/docs/paid-member-subscriptions/shortcodes/#Member_Account_form
The solution would be allowing you users to access the pms account page/redirecting them to the pms account page in order to allow them to retry their payment in case it failed.
Regarding the activation mail, Paid Member Subscriptions does not offer such a feature. In general, such a feature usually works the following way (regardless of the plugins you are using): if a user has accessed the activation link once, they won’t need to access it again and their email should be verified.- This reply was modified 10 months, 3 weeks ago by thomaswild.
Hello @stumur,
I have looked for a ticket on our website with your issue but unfortunately I have not found anything. Could you please let me know what email address you have used to open a ticket on our website?
Regarding you question, we do have certain add-ons/functionalities that allow you to create such forms and generate profiles automatically in the front-end but we can’t get into specifics here.Hello @muldari
To redirect your users after login, you can use the shortcode parameter redirect_url. Navigate to your login page and edit the pms-login shortcode to include this parameter.
Example:[pms-login redirect_url="https://www.yourdomain.com/account"]Note: The redirect will NOT work if it’s pointing to an outside URL, it needs to point to a page on your site.
Hello @mikewebb
We are not allowed to talk about the paid plugins here. If you wish to have this conversation, please contact us at https://www.cozmoslabs.com/support/open-ticket/Hi @cupideros,
I can only see one attached screenshot. Could you please send me the other screenshots as well?Example of what the Subscription Logs should look like: https://www.cozmoslabs.com/docs/paid-member-subscriptions/member-management/#Subscription_Logs
Example for Payment Logs: https://www.cozmoslabs.com/docs/paid-member-subscriptions/member-payments/#Payment_Logs
Please keep in mind the note added to my previous response:
Since this is a public forum, please make sure all sensitive/private data is hidden/blurred from the screenshotsHello @4ybusiness,
If you wish to customize the buttons that come with our plugins forms, you can do so using custom CSS.
If you are not sure where to start, you can follow this quick guide from our documentation page here: https://www.cozmoslabs.com/docs/paid-member-subscriptions/css-customization-guide-for-button-colors-2/Hello @cupideros,
To better understand the issue at had, I would like to ask you for some additional details:- A screenshot of the Plugins page at Dashboard -> Plugins -> Installed Plugins. Please make sure that our plugin as well as its version is visible.
- A screenshot of the page at Paid Member Subscriptions -> Settings -> Payments -> Gateways
- Could you send me the Subscription and Payment logs of 2-3 accounts that have the issue you have described?
For the subscription logs, navigate to: Paid Member Subscriptions -> Members -> look for the member you wish to see the information for -> edit member -> in the Subscriptions section -> click on edit -> scroll down to see the subscription log.
For the payment logs, you can navigate to: Paid Member Subscriptions -> Members -> look for the member you wish to see the information for -> edit member -> scroll down to Recent Payments -> click on view details -> scroll down to see the payment log.
Note: Since this is a public forum, please make sure all sensitive/private data is hidden/blurred from the screenshots
You can use a site like https://snipboard.io/ to share the screenshots.Hello @awais1111,
What you have requested is not possible using Paid Member Subscriptions alone.
If you wish to customize the registration form, you can use our other plugin, Profile Builder.Profile Builder and Paid Member Subscriptions are compatible, and you can use PB for User Management like Registration, Login, Edit Profile and PMS for Subscription Plans, Content Restriction and Payments.
After you install PB go to Profile Builder -> Form Fields and add the Subscription Plans Field. All the Subscription Plans created with PMS will be displayed inside PB’s Registration Form. Users will be able to register/subscribe using PB’s Registration Form.
You can read more about the integration between the two plugins here: https://www.cozmoslabs.com/docs/paid-member-subscriptions/integration-with-other-plugins/profile-builder/Hello @opendrives,
If you wish to remove the query string from the end of the URL you can use the following custom code snippet:add_filter( 'wppb_add_redirect_to_param', '__return_false' );You can use the code by adding it to your theme’s ‘functions.php‘ file or by creating a new plugin as described here.