vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=246)
-   -   Show Thread Enhancements - Hidden Signatures - Hide Sigs (spoiler) based on Post Count (anti-spam) or Usergroup (https://vborg.vbsupport.ru/showthread.php?t=249182)

ZeuQma 10-20-2010 06:02 PM

nice work, thank you..

brad99 11-30-2011 05:36 PM

very cool, thanks for your efforts!

Gord Lacey 09-19-2012 04:41 PM

Wonderful mod!

Now, I'm trying to find a way to have this be displayed only if a signature is quite long. Any way to set a condition like "Signature Length > 500"?

BirdOPrey5 09-20-2012 10:19 PM

Yes and no... It would be fairly easy to count the characters in the plugin but with BBCode you could have 1000 characters in the signature but it only displays a short 100 of them as actual text.

You could filter out the BBCode but it is more difficult.

Worse is that in my experience it's images which take up a lot of room, not so much text, and there is no way to check the size of the image each time it is loaded.

There was a thread somewhere here on a mod or template edit that allowed for a max signature height in pixels, and anything longer than that it would show a scrollbar so it didn't take up the whole page.

Here is the link actually: https://vborg.vbsupport.ru/showthrea...68#post2085268

Gord Lacey 09-21-2012 12:53 PM

Thanks Joe, I saw that mod the other day as well.

Would you be able to share the count to count the characters? I realize the BBCode can change what's displayed, but I'm still interested in how to do it. I don't allow graphics in the signatures, so that's not a problem.

BirdOPrey5 09-21-2012 08:17 PM

In a plugin on the postbit_display_complete hook the signature text (already converted to HTML) is stored in:

Code:

$post['signature']
Using the PHP function to count the length of a string you can get the number of characters:

PHP Code:

$siglength strlen($post['signature']); 

So you can do whatever you want-

PHP Code:

$siglength strlen($post['signature']);
if (
$siglength 500)
{
  
$post['bigsig'] = 1;
}
else
{
  
$post['bigsig'] = 0;


Then in the template instead of:

Code:

<vb:if condition="$post[posts] < 10">
You make it:

Code:

<vb:if condition="$post['bigsig']">
And the mod will only run if the signature has over 500 characters.

Gord Lacey 09-25-2012 08:31 PM

Awesome, thank you so much. I just edited the "postbit_display_complete" file (took a bit for a Newbie to find it), changed the code, and all is working perfectly!


All times are GMT. The time now is 08:48 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01210 seconds
  • Memory Usage 1,728KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete