Michael van der Steen
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 |
---|---|---|---|---|---|
I want data from a parent post to be included in a notification mail
Started by: Michael van der Steen in: Toolset Professional Support |
2 | 6 | 7 years, 2 months ago | ||
Using a CRED form link on a button class
Started by: Michael van der Steen
in: Toolset Professional Support
Problem: I would like to use a button to display my CRED child post link, but when I add the shortcode to a button module the URL breaks. If I add the CRED child post link without the button, it is styled like a simple text link. I would like to have it styled like a button. Solution: Add a custom CSS class to the shortcode using the 'class' attribute. [cred_child_link_form form='506' text='Offerte' parent_id='-1' target='_new' class='offerte-knop-button-link'] Then apply some custom CSS styles to mimic the design of your theme's buttons. .offerte-knop-button-link { display: block; color: #000; font-family: Roboto Condensed; font-weight: 300; font-size: 16px; padding: 12px 24px; border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; background: #000000; border: 0.5px solid #000000; background: none; -webkit-transition: all 200ms linear; -moz-transition: all 200ms linear; -ms-transition: all 200ms linear; -o-transition: all 200ms linear; transition: all 200ms linear; line-height: 18px; width: 90px; } .offerte-knop-button-link:after { content: '\e913'; -webkit-transition: all 200ms linear; -moz-transition: all 200ms linear; -ms-transition: all 200ms linear; -o-transition: all 200ms linear; transition: all 200ms linear; margin-left: 8px; margin-right: 0; font-size: 1.3em; height: auto; vertical-align: middle; width: auto; line-height: 1em; font-family: 'Ultimate-Icons' !important; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; display: inline-block; text-align: center; text-shadow: none; } .offerte-knop-button-link:hover { background: #e94e1b; border-color: #e94e1b; } .offerte-knop-button-link:hover:after { color: #fff; } Relevant Documentation: https://toolset.com/documentation/user-guides/cred-shortcodes/#cred_child_link_form |
2 | 3 | 7 years, 4 months ago | ||
Pass on a value from a parent post to a child post in CRED
1
2
Started by: Michael van der Steen
in: Toolset Professional Support
Problem: I would like to create a link from a View of parent posts to a CRED form that creates child posts. The parent post should be automatically selected in the CRED form when the user clicks the child post link. Solution: CRED offers a child post shortcode that can be placed in a View of parent posts that will automate this process. [cred_child_link_form form='506' parent_id='-1' target='_self'] You can place this shortcode in a Content Template or directly into your View's Loop Output editor. If you want to place this code in a Content Template that is constructed with Beaver Builder, then you cannot use a button module. You should use an HTML module. Relevant Documentation: https://toolset.com/documentation/user-guides/cred-forms-for-child-content/ |
2 | 18 | 7 years, 4 months ago | ||
How and where to add CSS class to style pagination controls
Started by: Michael van der Steen in: Toolset Professional Support |
2 | 2 | 7 years, 4 months ago | ||
Displaying data from a Parent post on a CRED form that creates a Child post
Started by: Michael van der Steen
in: Toolset Professional Support
Problem: Solution: add_shortcode('cred_parent_field', 'cred_parent_field_func'); function cred_parent_field_func($atts) { extract( shortcode_atts( array( 'id'=>null, 'field' => null, 'format' => null ), $atts ) ); $parent_id=null; if ( isset($_GET['parent_'.$id.'_id']) ) { $parent_id=intval($_GET['parent_'.$id.'_id']); } return do_shortcode( '[types field="' . $field .'" format="'. $format . '" id="'. $parent_id . '"][/types]'); } 2. Add this shortcode in your child post form: [cred_parent_field field="assigned-hours" format="FIELD_NAME: FIELD_VALUE" id="program"] In above shortcode: |
2 | 4 | 7 years, 4 months ago | ||
Populating child CRED form with data from parent post
Started by: Michael van der Steen
in: Toolset Professional Support
Problem: I would like to display a link to a CRED form where my user can create a child post. I would like to display this link in a View showing parent posts. When the link is clicked, I would like the CRED form to know which parent should be assigned to the child post. Solution: Use the "Create child post link" option when inserting your CRED form. Relevant Documentation: https://toolset.com/documentation/user-guides/creating-cred-forms/ |
2 | 3 | 7 years, 4 months ago | ||
Create a games "database" and display all games with club logo
Started by: Michael van der Steen in: Types Community Support |
2 | 6 | 7 years, 5 months ago | ||
Quote process
Started by: Michael van der Steen
in: Types Community Support
Solution: At moment CRED also does not support Multi-step Forms. I suggest to use WooCommerce & Request a Quote plugin and add all the items as products: Relevant Documentation: |
2 | 3 | 7 years, 5 months ago |