I'm using this to hide two elements for WP, BUT doesn't work for the embed forum:
Code: Select all
<script type = "text/javascript">
(function(){
var url = window.location.href;
if (/(community)/i.test(url)) {
document.getElementsByClassName("hideEmbedWP")[0].style.display = 'none'; //hides WP footer
document.getElementsByClassName("woocommerce-breadcrumb")[0].style.display = 'none';
}
})();
</script>
The only two elements I want hidden on forums if you were to inspect that link above, is the: .top-bar & #headerbar
(then I have to figure out why the floating top nav-bar isn't working on embed template.. hopefully last thing and it will look very good)