I have two post types names review request and reviews.
In review requests, users will list a set of skills that they want to be reviewed on. These skills have been created using a custom taxonomy
Now, for every skill, I want to create a rubric that has 5 rows and 5 columns.
When the user submits a review request, this request goes to the reviewer and the reviewers sees the skill and then uses the rubric to rate the work of the requester. I was wondering if there is a way to create a CRED form for reviews where
1) the skills are populated from the parent request (review request post)
2) Based on skills populated, rubric is populated.
3) Reviewer is able to rate the work for each skill using the rubric.
4) This data is stored as part of the post on submitting the CRED form.
How can make this happen? Will repeating field groups help? If not, is there a customization that would allow me to build something similar?
Thank you for your help.
Hello,
In my opinion, you can try these:
1) Setup one-to-many relationship between post types request and reviews
2) In single "request" post, display a taxonomy views:
display all skills terms assigned with current "request" post
3) In view's loop, display post form link for creating child "reviews" post
So user can add one or more reviews posts for each "request" post, and each "reviews" post can assign with different terms
More help:
https://toolset.com/course-lesson/selecting-parent-posts-when-using-forms-to-create-child-items/
My issue is resolved now. Thank you!