aaronM-9
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 |
---|---|---|---|---|---|
Forms Notification Causing Edit User Page to Crash?
1
2
Started by: aaronM-9 in: Toolset Professional Support |
2 | 20 | 6 years, 5 months ago | ||
Registration Issue following Upgrade to Final Released Version
1
2
Started by: aaronM-9 in: Toolset Professional Support |
3 | 20 | 6 years, 5 months ago | ||
Are all toolset_get_related_posts required?
Started by: aaronM-9
in: Toolset Professional Support
Problem: Solution: For m2m relationships all 8 arguments are required. (We plan to update this to make it easier to pass only certain arguments and leave others as default.) Relevant Documentation: |
2 | 6 | 6 years, 5 months ago | ||
Recommended Method for Recompiling Bootstrap
Started by: aaronM-9
in: Toolset Professional Support
Problem: Solution: You would then need to manually enqueue these files and set the Toolset > Settings to say the theme is already loading Bootstrap. |
2 | 3 | 6 years, 5 months ago | ||
Nesting Non-Toolset Shortcode in Conditional Statement Doesn’t Work
Started by: aaronM-9
in: Toolset Professional Support
Problem: I'm trying to use a third party non-Toolset shortcode in a conditional HTML statement, but it's not working as expected. Solution: Be sure to register any third party shortcodes in Toolset > Settings > Frontend Content > Third party shortcode arguments. Relevant Documentation: |
2 | 4 | 6 years, 5 months ago | ||
Trouble Sending Form Notification Using User ID Field
Started by: aaronM-9
in: Toolset Professional Support
Problem: The issue here is that the user's Toolset Forms generic fields are not saving to the database. Solution: In order for the items to be saved to the database then you must add the "persist":1, attribute. Thanks, |
2 | 3 | 6 years, 5 months ago | ||
Split: CRED Notification Not Sending from Edit User Form
Started by: aaronM-9 in: Toolset Professional Support |
2 | 6 | 6 years, 5 months ago | ||
Edit Account not Working for Subscriber Role
Started by: aaronM-9
in: Toolset Professional Support
Problem: The "Edit Account" WooCommerce page only works if I'm logged in as the administrator and not as a user in the role "subscriber" Solution: It is a compatibility problem, see the fix: Relevant Documentation: |
2 | 5 | 6 years, 5 months ago | ||
Can I run a manual query (including a calculated field) that passes to a View?
Started by: aaronM-9 in: Toolset Professional Support |
2 | 6 | 6 years, 5 months ago | ||
Make More Consistent Relationship Naming Convention
Started by: aaronM-9
in: Toolset Professional Support
Problem: I want to get the parent post ID. Post relationships created in the new M2M system use dashes in their slugs, but post relationships migrated from the legacy system use underscores in their slugs. I would like to be able to programmatically determine the relationship slug to get related posts, but the naming convention is inconsistent. Solution: Use the toolset_get_relationship API to inspect new or legacy migrated relationships, and use the toolset_get_related_posts API to get related posts from either migrated or new relationships. function be_get_parent_id($atts){ //Get current post object and ID global $post; $post_id_current = $post->ID; $a = shortcode_atts( array( 'postid' => $post_id_current, 'parent' => '', ), $atts ); //get post type $post_id_current = $a['postid']; $post_type_current = get_post_type($post_id_current); //The Post relationship slug to check - NOTE THE NEW SYNTAX WITH - HERE $relationship_to_query = $a['parent']."-".$post_type_current; //Set the role the other post type has: $role = "parent"; //Get related posts with new API, if none, it'll return 0, if any, the ID (hence not 0) // try legacy method, fallback to new method $related_post = toolset_get_related_post( $post_id_current, array($a['parent'], $post_type_current), $role); if (! $related_post ){ $related_post = toolset_get_related_post( $post_id_current, $relationship_to_query, $role); } return $related_post; } add_shortcode( 'be-get-parent-id', 'be_get_parent_id' ); Relevant Documentation: |
2 | 10 | 6 years, 6 months ago | ||
Setting Conditional Groups Based on Relationships using Types 3.0
Started by: aaronM-9 in: Toolset Professional Support |
2 | 6 | 6 years, 6 months ago | ||
“Form Type or Post Type is not set” error when using the Autogenerate button in CRED
Started by: aaronM-9
in: Toolset Professional Support
Problem: The issue here is that the user was getting the error "Form Type or Post Type is not set" Solution: This issue was resolved in our Latest Toolset Forms version. |
2 | 16 | 6 years, 6 months ago | ||
Fatal Error Displaying Post After Upgrade to Layouts 2.3 RC2
1
2
Started by: aaronM-9 in: Toolset Professional Support |
4 | 18 | 6 years, 6 months ago | ||
CRED Notification Not Sending from Edit User Form
Started by: aaronM-9
in: Toolset Professional Support
Problem: There are some PHP warning when send submit the Toolset form for editing user with email notification settings: PHP Warning: array_key_exists(): The first argument should be either a string or an integer in /home/aaronmckeon/public_html/wp-content/plugins/cred-frontend-editor/library/toolset/cred/embedded/models/CRED_Fields_Types_Utils.php on line 30 Solution: It is fixed in the latest version of CRED beta plugin 2.0 RC, please update all Toolset plugins to the latest beta version and test again, you can download them here: https://toolset.com/account/downloads/ Choose channel: Beta Relevant Documentation: |
2 | 12 | 6 years, 6 months ago | ||
Make Taxonomy Optional When in a Select Drop-Down
Started by: aaronM-9
in: Toolset Professional Support
Problem: I would like to make a single select taxonomy field optional in my CRED form by inserting a placeholder option before the term options. Solution: There's not an option to do this in the GUI, but you could use some JavaScript to insert the placeholder option programmatically. Another ticket I worked on recently discussed this approach in some detail: |
2 | 5 | 6 years, 6 months ago |