-
Beta Was this translation helpful? Give feedback.
Answered by
abhilesh
May 29, 2024
Replies: 1 comment 2 replies
-
TLDR: you are changing in the wrong part of the code. First of all there is a precedence of CV source, as stated in the docs. Based on what is written there, the order is:
So this order is implemented there in _layouts/cv.liquid. So you are changing the code that handles the second case, not the first, which is your case. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I believe this limitation is due to the schema used in JSON Resume, which wouldn't recognize "experience" as a valid field. Hence, the titles don't change when you modify
resume.json
(or anything else for that matter).To make modifications to the titles, you'd have to revert to using the
_data/cv.yml
file. For this to be triggered, you must delete theassets/json/resume.json
file.Then, modify your
_data/cv.yml
file, where you can change thetitle:
field to reflect the desired title.