Bochnacki
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 |
---|---|---|---|---|---|
Search speed
Started by: Bochnacki in: Toolset Professional Support |
2 | 4 | 6 years, 10 months ago | ||
Packet System has stopped working.
1
2
Started by: Bochnacki in: Toolset Professional Support |
2 | 20 | 7 years, 2 months ago | ||
CRED – parent-child drop-down relationship
1
2
Started by: Bochnacki in: Toolset Professional Support |
2 | 21 | 7 years, 2 months ago | ||
CTP relationships – dropdowns not show "childless parent"
Started by: Bochnacki in: Toolset Professional Support |
2 | 17 | 7 years, 2 months ago | ||
Link to CPT view based on post relationship
Started by: Bochnacki
in: Toolset Professional Support
Problem: I have a one-to-many hierarchical relationship of post types with grandparent, parent, and child posts (Make > Model > Version). On the single Version post page, I would like to display the Version information, as well as breadcrumb links to the single Model and single Make pages for its parent and grandparent posts. On the parent single Model page, I would like to show a View of all the Versions that belong to this parent. The breadcrumbs on this page should include a link to the grandparent Make post. On the single grandparent Make page, I would like to include a View that shows all the Version posts belonging to the grandparent Make. Solution: Create a Content Template for Version posts. Include information about the Version by adding Field shortcodes. Create another View that will be used to display breadcrumb links. Add links to the parent and grandparent single post pages. Place this View in your Content Template. Use a post relationship filter to create a View of Version posts. Filter to show posts that are children of the current post. In the Loop Output section, include links to each Version single post page. Create another View that shows links to the grandparent Make single post. Use this View to display breadcrumbs. Place both these Views in your Content Template for Model single posts. Repeat this process for the grandparent Make Content Template, but remove the filter and update the breadcrumb structure to match your hierarchy. Relevant Documentation: https://toolset.com/documentation/user-guides/displaying-fields-of-parent-pages/ |
2 | 9 | 7 years, 2 months ago | ||
Custom field – enforced character count
Started by: Bochnacki in: Toolset Professional Support |
2 | 5 | 7 years, 2 months ago | ||
CTP relationships in dropdowns
1
2
Started by: Bochnacki in: Toolset Professional Support |
2 | 19 | 7 years, 3 months ago | ||
Featured posts at the top of the list, part 2
1
2
Started by: Bochnacki
in: Toolset Professional Support
Problem: I would like to be able to set certain posts as "featured posts", so they will appear at the top of sorted results lists. Solution: Use a custom field to store a value of 1 for all posts, or 2 if the post is "featured". Use the cred_save_data hook to add this value automatically when posts are created by CRED. Filter based on this custom field. Relevant Documentation: https://toolset.com/documentation/programmer-reference/cred-api/#cred_save_data |
2 | 25 | 7 years, 3 months ago | ||
“Checked default” does not work
1
2
Started by: Bochnacki
in: Toolset Professional Support
Problem: Solution: |
3 | 18 | 7 years, 3 months ago | ||
Conditional output dependent on CRED form
1
2
Started by: Bochnacki
in: Toolset Professional Support
Problem: Solution: 2) In the single package post, use shortcode [wpv-conditional] to check the field value, then display the what you want Relevant Documentation: |
2 | 17 | 7 years, 3 months ago | ||
Parametric search – crash AJAX
Started by: Bochnacki
in: Toolset Professional Support
Problem: Solution: |
2 | 4 | 7 years, 3 months ago | ||
CRED – adding CPT terms
Started by: Bochnacki in: Toolset Professional Support |
2 | 3 | 7 years, 3 months ago | ||
Deleting taxonomy terms from a post edited by CRED
Started by: Bochnacki
in: Toolset Professional Support
Problem: I would like to automatically remove all "payment" taxonomy terms from a post when a User edits this post with CRED. Solution: Use the cred_save_data hook and the wp_set_object_terms function to remove any terms from the 'payment' taxonomy associated with the post being edited. add_action('cred_save_data', 'my_save_data_action_remove_options',10,2); function my_save_data_action_remove_options($post_id, $form_data) { if ($form_data['id']==2226){ wp_set_object_terms( $post_id, null, 'payment' ); } } Relevant Documentation: |
2 | 11 | 7 years, 3 months ago | ||
Featured posts at the top of the list
Started by: Bochnacki in: Toolset Professional Support |
2 | 7 | 7 years, 3 months ago | ||
CRED stopped showing Google map.
Started by: Bochnacki
in: Toolset Professional Support
Problem: “ There is a problem with Array field. Please check CRED form. ” Notice: Undefined variable: command_field in /home/c///public_html/wp-content/plugins/cred-frontend-editor/application/controllers/field_translation/command/CRED_Translate_Command_Factory.php on line 30 Notice: Array to string conversion in /home/c///public_html/wp-content/plugins/cred-frontend-editor/application/models/field/field.php on line 375 Solution: It will also be included in upcoming version of CRED. |
3 | 5 | 7 years, 3 months ago |