Thread Starter
cyphog
(@cyphog)
Also, anyway to have a sidebar display on all content types by default (in essence, replacing the primary sidebar) without having to check all static pages, posts, pages, etc., boxes? Would love to see a one-click covers all type button.
Thanks again!
This is a good use case I have not thought about. Currently it is not possible because you cannot select draft posts in the sidebar editor, but if you go to modules/post_type.php line 63 and change:
'post_status' => 'publish,private,future',
to
'post_status' => 'publish,private,future,draft',
it should be possible. If you try it out, let me know if it works and I will consider adding it in a future release.
I could make some shortcut buttons, but it is definitely not a priority at the moment.
Thread Starter
cyphog
(@cyphog)
If you go to modules/post_type.php line 63 and change…
This worked! The draft shows up and the CAS appeared when previewed. Thanks!
w/r/t:
I could make some shortcut buttons, but it is definitely not a priority at the moment.
Are you referring to my second post asked if there’s an “all-on” choice for a sidebar instead of having to create numerous conditions?
Yes. I try to make the plugin as compatible, modular and flexible as possible and at the same time suit all kinds of use cases, and currently, in my opinion, an “all-on” functionality does not fit into this “philosophy”. It might change in the future and I have noted the suggestion.