Edge
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 |
---|---|---|---|---|---|
Can’t display login form to visitors
Started by: Edge
in: Toolset Professional Support
Problem: Yoast plugin causing issues with guest permissions and forms. Solution: We are currently aware of this issue and have an errata page for this. |
2 | 11 | 6 years, 9 months ago | ||
Send email notification using page custom field
1
2
Started by: Edge
in: Toolset Professional Support
Problem: Solution: The simplest way to get around this is by using the WP SMTP plugin which should cause your mails to start working again. |
2 | 20 | 6 years, 9 months ago | ||
Create new user password not working
Started by: Edge
in: Toolset Professional Support
Problem: I have set up a "create account" page as per training course (https://toolset.com/documentation/user-guides/cred-training-course/part-6-building-forms-creating-user-accounts/) When a account is created and try and sign in, the password I've set is not being recognised? Solution: Edit the CRED form for creating users, in section "Content", click button "Auto-Generate Form", disable option "Autogenerate Password", and save the CRED form. Relevant Documentation: |
2 | 4 | 6 years, 9 months ago | ||
Fatal Error… Failed Memory Size
Started by: Edge
in: Toolset Professional Support
Problem: Add a New Post/User Form. It is giving me an error message: My hosting provider has increased the PHP limit to 5GB, but this has not rectified the problem. Solution: if there are lots of data in your website, it will spend more server capability, please try to increase the PHP limitation of your website: For example: define('WP_MEMORY_LIMIT', '512M'); define( 'WP_MAX_MEMORY_LIMIT', '1024M' ); Relevant Documentation: https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP |
2 | 14 | 6 years, 9 months ago | ||
Checkbox conditional display
Started by: Edge
in: Toolset Professional Support
Problem: Solution: This is actually possible. What you can try is to use our conditional shortcode to do this. |
2 | 3 | 6 years, 9 months ago | ||
Woocommerce Payments with CRED Commerce depending on inventory status
Started by: Edge
in: Toolset Professional Support
Problem: I would like to allow my Users to select different Product variations based on availability, then use CRED Commerce to create an Order and accept payment in WooCommerce. Solution: CRED Commerce works best with simple products, not variable products. If you only have a few variations of your product, you could separate those into different products first. WooCommerce can track inventory for each product, and you can use WooCommerce Views and conditional HTML to show a CRED Commerce form based on whether or not a product is in stock. For example, let's say you have Product A and Product B. If Product A is in stock, you want to show your Users a CRED form that allows them to submit a post. If Product B is in stock, you want to show your Users a different CRED form that allows them to register for the site. On Product A's single post page, you can insert this code to test whether or not Product A is in stock, and show a CRED form: [wpv-conditional if="( $(views_woo_in_stock) eq '1' )"] Product A is in stock now! [cred_form form="submit-post-form"] [/wpv-conditional] On Product B's single post page, you can insert this code to test whether or not Product B is in stock, and show a different CRED form: [wpv-conditional if="( $(views_woo_in_stock) eq '1' )"] Product B is in stock now! [cred_form form="register-form"] [/wpv-conditional] Relevant Documentation: |
2 | 3 | 6 years, 9 months ago |