jesperA-2
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 |
---|---|---|---|---|---|
Using Conditional seems to freeze page
Started by: jesperA-2
in: Toolset Professional Support
Problem: Attempting to edit the default single template of a post type leads to a page hanging with errors: "Fatal error: Maximum execution time exceeded" in specific plugin files. Solution: The issue appears related to execution time limits, potentially within Toolset Blocks. Start by increasing the PHP maximum execution time to troubleshoot. Additionally, duplicating the content template via "WordPress Dashboard > Toolset > Content Templates" worked correctly and allowed for editing. Disable unnecessary plugins and custom code to isolate conflicts. |
2 | 9 | 12 months ago | ||
The added query filter disappears from UI in a View
Started by: jesperA-2 in: Toolset Professional Support |
2 | 6 | 1 year, 7 months ago | ||
Can't save changes in form – expert mode
Started by: jesperA-2 in: Toolset Professional Support |
2 | 3 | 1 year, 7 months ago | ||
Select in form cannot have same values
Started by: jesperA-2 in: Toolset Professional Support |
2 | 4 | 1 year, 9 months ago | ||
PHP Fatal error: Uncaught TypeError: array_diff(): Argument #1 ($array) must be
Started by: jesperA-2 in: Toolset Professional Support |
2 | 9 | 1 year, 11 months ago | ||
Repeatable group doesn't show data in view – although tutorial followed
Started by: jesperA-2 in: Toolset Professional Support |
2 | 6 | 2 years, 10 months ago | ||
wp-conditional hangs page with blocks
Started by: jesperA-2 in: Toolset Professional Support |
2 | 3 | 3 years, 1 month ago | ||
Using shortcode attribute in Views content selection
Started by: jesperA-2 in: Toolset Professional Support |
2 | 7 | 3 years, 2 months ago | ||
wp-conditional fata error stops page
Started by: jesperA-2 in: Toolset Professional Support |
2 | 4 | 3 years, 2 months ago | ||
Pass postID from one view to another view
Started by: jesperA-2
in: Toolset Professional Support
Problem: I would like to pass values from one View into another View nested inside the original View. Solution: You can place a View in a custom HTML block and include various shortcode attributes: [wpv-view name="slug-of-nested-view" attr1="[wpv-post-id]" attr2="[types field='some-slug'][/types]"] That would display the nested View and pass the current post ID from View 1 into an attribute attr1, and it would pass the value of custom field some-slug from the current post of View 1 into an attribute attr2. Then in View #2, you can set various Query Filters to respond to these shortcode attributes, or you can use the wpv-attribute shortcode to access those attributes in the Loop editor: Parent post ID: [wpv-attribute name="attr1"]<br /> Parent post custom field "some-slug": [wpv-attribute name="attr2"] Relevant Documentation: |
2 | 4 | 3 years, 4 months ago | ||
Problems between Learnpress and Types v3.3.3
Started by: jesperA-2
in: Toolset Professional Support
Problem: Create a new lesson in Learnpress. Courses could be created but not lessons. It's a multisite which, on this particular site, uses Learnpress and Toolset Types. I got PHP error: "call to undefined function get_current_screen()" when using Types 3.3.3 Solution: There is a similar known issue on Toolset Types plugin version 3.3.3, see the errata: https://toolset.com/errata/fatal-error-when-importing-toolset-types-settings/ It is fixed in the latest version of Types plugin 3.3.4, please try to upgrade to Types 3.3.4, and test again, you can download it here: https://toolset.com/account/downloads/ Relevant Documentation: |
2 | 3 | 5 years, 4 months ago | ||
DIVI-builder won’t load when the FORM plugin is activated
Started by: jesperA-2
in: Toolset Professional Support
Problem: Solution: |
3 | 5 | 6 years, 2 months ago | ||
Pre-populate custom image
Started by: jesperA-2 in: Toolset Professional Support |
2 | 4 | 6 years, 3 months ago | ||
Customise repeatable custom images in a form
Started by: jesperA-2
in: Toolset Professional Support
Problem: I would like to translate the "Add New" and "Delete" buttons for repeating fields in a Form. Solution: Use the following custom code snippets or translate using WPML String Translation. The strings are registered in the wpv-views text domain. add_filter('toolset_button_delete_repetition_text', 'toolset_button_delete_repetition_text', 10, 2); function toolset_button_delete_repetition_text($text, $config) { return 'Your own custom delete text'; } add_filter('toolset_button_add_repetition_text', 'toolset_button_add_repetition_text', 10, 2); function toolset_button_add_repetition_text($text, $config) { return 'Your own custom add new text'; } |
2 | 3 | 6 years, 3 months ago | ||
CRED functionality for posts with relationship
Started by: jesperA-2 in: Toolset Professional Support |
2 | 6 | 6 years, 6 months ago |