stephenR
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Woocommerce hidden products are visible
Started by: stephenR
in: Toolset Professional Support
Problem: A search filter option for "hidden products" is visible in my custom search archive for the Products post type (Shop archive), and Products that should be hidden are displayed in the search results. Solution: Remove the undesired "hidden products" term from the Product Categories taxonomy, and update to the latest versions of all Toolset plugins. |
3 | 13 | 2 years, 4 months ago | ||
PHP 500 error
Started by: stephenR
in: Toolset Professional Support
Problem: Paginating or filtering via ajax on custom archives for WC product or category archives produce the PHP error Solution: It is fixed in the latest version of Toolset Views/Blocks plugin, you can download it here: https://toolset.com/account/downloads/#legacy-plugins Relevant Documentation: |
2 | 4 | 3 years, 5 months ago | ||
Changing input type from 'text' to 'search'
Started by: stephenR in: Toolset Professional Support |
2 | 3 | 4 years, 7 months ago | ||
Plugins won't update in development site
Started by: stephenR in: Toolset Professional Support |
2 | 5 | 5 years, 6 months ago | ||
New user registration with a link to set password
Started by: stephenR
in: Toolset Professional Support
Problem: I would like to use a Form to register Users, and when registration is complete I want to send the new User a direct link to reset their password. Solution: Nothing like that is built into Forms, but you can use the cred_save_data API to programmatically trigger the wp_new_user_notification function, outside of the Forms notification system. In the cred_save_data callback for a User Form, the $post_id variable will contain the new User's ID. If you'd like to customize the email, you can use the wp_new_user_notification_email filters. Relevant Documentation: |
2 | 5 | 5 years, 11 months ago | ||
Building a membership site with private access to key codes for a locksmith
Started by: stephenR
in: Toolset Professional Support
Problem: I have a client who is a locksmith. He has asked me to develop a site which will provide his customers with a private area on his site where they can view and purchase keys for their home. Each key will have a unique ID code, and when they log in to their private area they will be able to see the codes for any keys they own, and will then be able to purchase replacement keys through WooCommerce. On receiving an order he will cut and deliver the keys. The whole thing needs to be secure so no key codes are leaked. Solution: It is possible with Toolset + some custom codes. For example: 1) Create a custom post type "Keys" + Custom single line field "unique ID code" 2) Create a form for creating the "Key" post, and charge the user after submit the form: https://toolset.com/documentation/user-guides/using-cred-commerce-to-add-payments-to-forms/ 3) After user submit the form, use action hook "cred_save_data" to trigger a custom PHP function https://toolset.com/documentation/programmer-reference/cred-api/#cred_save_data in this PHP function, setup custom codes: generate a unique ID code, and update the custom field value "unique ID code" 4) Create a wordpress page "private area", in this page display a post view, list "Keys" posts, filter by post's author is current user, and display the "unique ID code" field Relevant Documentation: https://toolset.com/documentation/user-guides/filtering-views-query-by-author/ |
2 | 4 | 6 years, 3 months ago |