Sounds like you need to enable “Theme Compatibility” in the Sermon Manager Settings > Advanced.
Thank you @hikinmike for the tips.
But, when I enabled “Theme Compatibility”, Archive layout broke, whereas the Single page is ok…
Archive layout with Theme Compatibility disabled – https://imgur.com/5MdCHaE
Archive layout with Theme Compatibility enabled – https://imgur.com/mrYwGFV
Single page with Theme Compatibility enabled – https://imgur.com/o4tazCJ
You can hide the sidebar using CSS, but I can’t see your site live so I can’t help and the developers are NOT monitoring this forum.
@hikinmike I tried to hide using css, but no luck.
Wait, I will upload online so that you can check the site.
-
This reply was modified 6 years, 1 month ago by
siamnaulak.
Hi Mike @hikinmike
I had uploaded in my demo server. Please check here http://173.237.190.2/~siamnaulak/ebcchurch/sermons/
Thanks for posting it live, it helps!
Loos like you are trying to hide it by using this:
.wpfc-genesis .sidebar {
display: none;
}
The .wpfc-genesis is not part of the .sidebar. If you are not using the sidebar at all, you can simply use .sidebar {display: none;}. If you using the sidebar on other parts of your site, you can use this. That will hide just the sermon stuff:
.tax-wpfc_preacher .sidebar,
.tax-wpfc_bible_book .sidebar,
.tax-wpfc_service_type .sidebar,
.single-wpfc_sermon .sidebar,
.post-type-archive-wpfc_sermon .sidebar {display: none;}
Dear Mike,
It works… You are a genius!! I really appreciate your help. I’ve spent lots and lots of my time trying to find out this but failed.
http://173.237.190.2/~siamnaulak/ebcchurch/sermons/
The amazing thing is that it hides any plugin, not just the Sermon Manager plugin.
Thank you once again…