It's not an error, it's a warning.
It's not saying there is something wrong. It's saying that what you did might be OK, but maybe you should make sure it is OK.
You are saying to Lavaan that you want the parameter for
stress ~ practice
To be called b11 and to be equal in both groups. Lavaan thinks that's unusual and suggests that you might want them to be different (because you can always constrain them to be equal if you want to).
To do this, you need two labels. I don't know what your countries are, but if they were Yemen and Zambia, then you could write:
stress ~ c(y_b11, z_b11) *practice + c(y_b12, z_b12) *style + c(y_c11, z_c11) * enrich + c(y_c12, z_c12) *conflict
Now you have a separate parameter for each country.
Jeremy