aaronM-9
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Posts from front-end not associating with correct layout
Commencé par : aaronM-9 in: Toolset Professional Support |
1 | 2 | Il y a 6 années et 7 mois | ||
Error Message Submitting Form (2 instances of same form on one page via View)
Commencé par : aaronM-9 in: Toolset Professional Support |
3 | 6 | Il y a 6 années et 7 mois | ||
Forms Notification Causing Edit User Page to Crash?
1
2
Commencé par : aaronM-9 in: Toolset Professional Support |
2 | 20 | Il y a 6 années et 7 mois | ||
Registration Issue following Upgrade to Final Released Version
1
2
Commencé par : aaronM-9 in: Toolset Professional Support |
3 | 20 | Il y a 6 années et 7 mois | ||
Are all toolset_get_related_posts required?
Commencé par : 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 | Il y a 6 années et 7 mois | ||
Recommended Method for Recompiling Bootstrap
Commencé par : 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 | Il y a 6 années et 7 mois | ||
Nesting Non-Toolset Shortcode in Conditional Statement Doesn’t Work
Commencé par : 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 | Il y a 6 années et 7 mois | ||
Trouble Sending Form Notification Using User ID Field
Commencé par : 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 | Il y a 6 années et 7 mois | ||
Split: CRED Notification Not Sending from Edit User Form
Commencé par : aaronM-9 in: Toolset Professional Support |
2 | 6 | Il y a 6 années et 7 mois | ||
Edit Account not Working for Subscriber Role
Commencé par : 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 | Il y a 6 années et 7 mois | ||
Can I run a manual query (including a calculated field) that passes to a View?
Commencé par : aaronM-9 in: Toolset Professional Support |
2 | 6 | Il y a 6 années et 7 mois | ||
Make More Consistent Relationship Naming Convention
Commencé par : 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 | Il y a 6 années et 8 mois | ||
Setting Conditional Groups Based on Relationships using Types 3.0
Commencé par : aaronM-9 in: Toolset Professional Support |
2 | 6 | Il y a 6 années et 8 mois | ||
« Form Type or Post Type is not set » error when using the Autogenerate button in CRED
Commencé par : 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 | Il y a 6 années et 8 mois | ||
Fatal Error Displaying Post After Upgrade to Layouts 2.3 RC2
1
2
Commencé par : aaronM-9 in: Toolset Professional Support |
4 | 18 | Il y a 6 années et 8 mois |