0
votes

I'm working with a job vacancies site with drupal. There's a content type named CV and there are specific profile pages for specific users(I use Profile2 module). What I want to do is when admin add a new CV for a specific user, that cv is posted on that user's profile page. I can create cv content but can't link to that user's profile page. I've find possible answers on google and can't find the right one.

1
How about adding node reference field to user profile which will reference nodes in CV type?MilanG

1 Answers

0
votes

Using the Views module, you can create a page view that displays nodes of type CV and uses the User ID (from logged in user or URL) as a contextual field, then set the path to something like "user/%/CV".