Ok so did a little playing around and have come up with this kind of
cheat solution to hide replies when other tabs are open using jquery...
Open postbit template and copy it to a text file and save it as you will need it later.
headinclude template:
Code:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script>
$(document).ready(function(){
$('ul.tabs li').click(function(){
var tab_id = $(this).attr('data-tab');
$('ul.tabs li').removeClass('current');
$('.tab-content').removeClass('current');
$(this).addClass('current');
$("#"+tab_id).addClass('current');
// hide replies if other tabs clicked
if($(this).index()) {
$(".repliez").hide();
} else {
$(".repliez").show();
}
});
}); // end
</script>
Additional CSS:
Code:
ul.tabs{
margin: 0px;
padding: 0px;
list-style: none;
}
ul.tabs li{
background: none;
color: #222;
display: inline-block;
padding: 10px 15px;
cursor: pointer;
}
.first {
height:0!important;
padding:0!important;
}
ul.tabs li.current{
background: #ededed;
color: #222;
}
.tab-content{
display: none;
background: #ededed;
padding: 15px;
}
.tab-content.current{
display: inherit;
}
Top of postbit template (original):
PHP Code:
<if condition="$post[postcount] == 1">
End of postbit template (original) add:
HTML Code:
<ul class="tabs">
<li class="tab-link current" data-tab="tab-1">Comments</li>
<li class="tab-link" data-tab="tab-2">Discus</li>
<li class="tab-link" data-tab="tab-3">Facebook</li>
<li class="tab-link" data-tab="tab-4">Google</li>
</ul>
<div id="tab-1" class="tab-content first current">
</div>
<div id="tab-2" class="tab-content">
Relevent content here.
</div>
<div id="tab-3" class="tab-content">
Relevent content here.
</div>
<div id="tab-4" class="tab-content">
Relevent content here.
</div>
<else />
Now go find the postbit template copy you made earlier and make thse edits to it...find:
Code:
$template_hook[postbit_start]
<table class="tborder"
and change to
Code:
$template_hook[postbit_start]
<table class="tborder repliez"
Add
to the end of the copy to close the condition.
and finally copy this all over to the end of original postbit template.
So now you should have something like
PHP Code:
if condition
pb template
tabs
else
pb template
/if
Its probably not ideal thats why I said
cheat solution but it does what you want I think?!