As Jeremy said, please used the interfaces - brms category or otherwise I will likely overlook it (I just changed the category manually this time).
You can only estimate certain correlations, but not others, if the correlations you want to estimated form a correlation sub-matrix, that is a subset of the rows and columns of the original correlation matrix, where rows and columns have the same indices.
Suppose you have two continuous predictors x1 and x2, and you wanted to estimate the correlations only between the intercept and x1, than you could go for
y ~ x1 + x2 + (x1 | subject) + (0 + x2 | subject)
In your case, the correlations you want to estimate don’t form a correlation sub-matrix, so I don’t see this is possible.