I have a strange problem. My site is in development currently. I have taken over from the previous developer, and I believe this was working for him (I think/hope).
We have a few portfolio pages, but I cannot view/display any of them. If I click on Preview for example, I get a blank page. Browser console shows no errors.
Pages and blog posts work perfectly.
I have enabled debugging, deleted cache, deactivated all plugins - still the same. And there is nothing in the log.
I am at lost of where to look next. Any pointer to what I should control or test will be very useful.
Thanks
I have a strange problem. My site is in development currently. I have taken over from the previous developer, and I believe this was working for him (I think/hope).
We have a few portfolio pages, but I cannot view/display any of them. If I click on Preview for example, I get a blank page. Browser console shows no errors.
Pages and blog posts work perfectly.
I have enabled debugging, deleted cache, deactivated all plugins - still the same. And there is nothing in the log.
I am at lost of where to look next. Any pointer to what I should control or test will be very useful.
Thanks
Share Improve this question asked Dec 9, 2019 at 14:52 Pat070Pat070 1112 bronze badges 2 |1 Answer
Reset to default 0Now it works:
- Uninstalled all plugins
- ReUpdated Theme
- Reinstalled plugins
It was obviously some incompatibility issue that only deactivating plugins did not solve.
portfolio
is a custom post type, I would suspect that since the old person left, the website may have been updated to WP 5.0+, which includes the new Block Editor. If that's the case andportfolio
was registered without REST API support, that would cause the blank screen. Look through the theme and plugins to find out whereportfolio
CPT is registered and make sure it hasshow_in_rest
set totrue
. – WebElaine Commented Dec 9, 2019 at 14:56