View Single Post
  #17  
Old 05-16-2016, 06:04 PM
PinkMilk PinkMilk is offline
 
Join Date: May 2010
Location: Earth
Posts: 193
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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
HTML Code:
</if>
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?!
Attached Images
File Type: png comments.png (64.2 KB, 0 views)
File Type: png other-tab.png (48.4 KB, 0 views)
Reply With Quote
3 благодарности(ей) от:
Dr.CustUmz, greigeh, TheLastSuperman
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01353 seconds
  • Memory Usage 1,817KB
  • Queries Executed 12 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code
  • (2)bbcode_html
  • (2)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (3)post_thanks_box_bit
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (2)postbit_attachment
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete