George Ho gives a very good set of advice and useful links for solving many common problems with MCMC on his blog. The post is lengthy and gives a lot of good advice, so it would be hard to summarize it, but in many cases you could re-parametrize model, choose different priors, or maybe use algebra to simplify some parts of the model, what could lead to improvements. As mentioned by George Ho, the great Stan's manual also has a chapter on this topic.
If this doesn't work, what people do in many cases where sampling would take unreasonably long, is they use methods to approximate the posterior instead of sampling from it. In such cases variational inference is commonly used (see e.g. Blei et al, 2016), among those methods ADVI (Kucukelbir et al, 2016), designed by authors of Stan and available in Stan, is among the most popular ones. It is significantly faster, but the price you pay is that this is just an approximation, and in some cases it might work better, while in other cases it might work worse (and it might be hard to diagnose it, e.g. Yao et al, 2018).
See also Variational inference versus MCMC: when to choose one over the other?