aaronM-9
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Third-Party Shortcode Stops Working after Update View Filter
Gestartet von: aaronM-9 in: Toolset Professional Support |
2 | 3 | vor 6 Jahren, 4 Monaten | ||
Posts from front-end not associating with correct layout
Gestartet von: aaronM-9 in: Toolset Professional Support |
1 | 2 | vor 6 Jahren, 4 Monaten | ||
Error Message Submitting Form (2 instances of same form on one page via View)
Gestartet von: aaronM-9 in: Toolset Professional Support |
3 | 6 | vor 6 Jahren, 4 Monaten | ||
Forms Notification Causing Edit User Page to Crash?
1
2
Gestartet von: aaronM-9 in: Toolset Professional Support |
2 | 20 | vor 6 Jahren, 4 Monaten | ||
Registration Issue following Upgrade to Final Released Version
1
2
Gestartet von: aaronM-9 in: Toolset Professional Support |
3 | 20 | vor 6 Jahren, 5 Monaten | ||
Are all toolset_get_related_posts required?
Gestartet von: 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 | vor 6 Jahren, 5 Monaten | ||
Recommended Method for Recompiling Bootstrap
Gestartet von: 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 | vor 6 Jahren, 5 Monaten | ||
Nesting Non-Toolset Shortcode in Conditional Statement Doesn’t Work
Gestartet von: 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 | vor 6 Jahren, 5 Monaten | ||
Trouble Sending Form Notification Using User ID Field
Gestartet von: 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 | vor 6 Jahren, 5 Monaten | ||
Split: CRED Notification Not Sending from Edit User Form
Gestartet von: aaronM-9 in: Toolset Professional Support |
2 | 6 | vor 6 Jahren, 5 Monaten | ||
Edit Account not Working for Subscriber Role
Gestartet von: 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 | vor 6 Jahren, 5 Monaten | ||
Can I run a manual query (including a calculated field) that passes to a View?
Gestartet von: aaronM-9 in: Toolset Professional Support |
2 | 6 | vor 6 Jahren, 5 Monaten | ||
Make More Consistent Relationship Naming Convention
Gestartet von: 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 | vor 6 Jahren, 5 Monaten | ||
Setting Conditional Groups Based on Relationships using Types 3.0
Gestartet von: aaronM-9 in: Toolset Professional Support |
2 | 6 | vor 6 Jahren, 5 Monaten | ||
„Form Type or Post Type is not set“ error when using the Autogenerate button in CRED
Gestartet von: 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 | vor 6 Jahren, 5 Monaten |