aaronM-9
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Third-Party Shortcode Stops Working after Update View Filter
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 3 | hace 6 años, 4 meses | ||
Posts from front-end not associating with correct layout
Iniciado por: aaronM-9 en: Toolset Professional Support |
1 | 2 | hace 6 años, 4 meses | ||
Error Message Submitting Form (2 instances of same form on one page via View)
Iniciado por: aaronM-9 en: Toolset Professional Support |
3 | 6 | hace 6 años, 4 meses | ||
Forms Notification Causing Edit User Page to Crash?
1
2
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 20 | hace 6 años, 4 meses | ||
Registration Issue following Upgrade to Final Released Version
1
2
Iniciado por: aaronM-9 en: Toolset Professional Support |
3 | 20 | hace 6 años, 5 meses | ||
Are all toolset_get_related_posts required?
Iniciado por: aaronM-9
en: 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 | hace 6 años, 5 meses | ||
Recommended Method for Recompiling Bootstrap
Iniciado por: aaronM-9
en: 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 | hace 6 años, 5 meses | ||
Nesting Non-Toolset Shortcode in Conditional Statement Doesn’t Work
Iniciado por: aaronM-9
en: 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 | hace 6 años, 5 meses | ||
Trouble Sending Form Notification Using User ID Field
Iniciado por: aaronM-9
en: 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 | hace 6 años, 5 meses | ||
Split: CRED Notification Not Sending from Edit User Form
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 6 | hace 6 años, 5 meses | ||
Edit Account not Working for Subscriber Role
Iniciado por: aaronM-9
en: 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 | hace 6 años, 5 meses | ||
Can I run a manual query (including a calculated field) that passes to a View?
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 6 | hace 6 años, 5 meses | ||
Make More Consistent Relationship Naming Convention
Iniciado por: aaronM-9
en: 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 | hace 6 años, 5 meses | ||
Setting Conditional Groups Based on Relationships using Types 3.0
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 6 | hace 6 años, 5 meses | ||
«Form Type or Post Type is not set» error when using the Autogenerate button in CRED
Iniciado por: aaronM-9
en: 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 | hace 6 años, 5 meses |