vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   New Posting Features - [hide] hack incl post thank you "addon" (https://vborg.vbsupport.ru/showthread.php?t=130887)

stinger2 02-20-2007 10:01 PM

Quote:

Originally Posted by itsid (Post 1186995)
yupp, my fault ;) printthread.php sure!

Okay, the error comes from a strange behaviour of
PHP Code:

$thank['userid'

set by Abe1s hack,
If you never updated that hack the only workaround is to add some extra db querys.
In fact I'm pretty sure that there was an update... nevermind.

I've got the solution somewhere in my diskbackups,
as soon as it is found, I'll attach it to this post.

stay tuned
'sid

hi sid

you mean this?

i still have it in my favourite
https://vborg.vbsupport.ru/showpost....&postcount=259

BTW
I changed it again since the 4 queries did fix the thankyou button disappearing.......but some members had still complaints about the ajax

ps. only two members had problem

rgds

itsid 02-20-2007 10:02 PM

Hi xenon,

Well to add that button, all you have to do is upload the image from post #74 to your images/editor folder (location may vary depending on style)

then go to ACP -> custom vB Codes -> hide
and add the imagepath like
PHP Code:

/images/editor/ed-hide.gif 

that'll do for new-post or new-thread editors.

for quickreply you'll have to add editor-buttons to quickreply (hack should be out there for doing so)

'sid


[EDIT]
WOW stinger2 thanks alot!

I've searched my harddrives *dough* :(
That's exactly what I was searching for :D
now added that link to firstpost, for me to remember ;)

So skavanger .... try that one; it'll do for you I guess ;)

xenon58 02-21-2007 02:13 AM

hey sid, thnx for the reply bud. your tip is greatly appreciated, i've got it to work ;)

here is a small how-to if you would like to add a button to your quick-reply and quick-edit. after some mocking around, i've got it placed where i wanted and of course, work the code ;)

templates to edit are:

1. showthread_quickreply

2. postbit_quickedit


search for the following code

PHP Code:

<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_quote"><img src="$stylevar[imgdir_editor]/quote.gif" width="21" height="20" alt="$vbphrase[wrap_quote_tags]/>
</
div></td


and add underneath


PHP Code:

<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_hide"><img src="$stylevar[imgdir_editor]/en-hide.gif" width="21" height="20" alt="$vbphrase[wrap_hide_tags]/>
</
div></td


make sure path to the image is a correct one.


hope this helps to those who needs it.

MPDesignZ 02-21-2007 03:52 AM

Quote:

Originally Posted by MissKalunji (Post 1181760)
https://vborg.vbsupport.ru/external/2011/04/2.gif

u dont see that icon in the tool bar when ur posting?

Yes I do, but I got it to work the way I wanted it to with the addition of the attachments hack that goes with the post thanks hack for version 3.5. :D Thanks for your help and thanks to the other member who posted his help.

MP

ahmednadir 02-21-2007 04:09 AM

thanks for this great mod
I've added it to my site but I can't get it to work
I've installed it, checked the settings, added the button (gif from my pc) and everything is looking fine
I come to hide but the hide hack does'nt work

for example

if I enter [hide]hide hack not working for me[/hide]

It appears the same [hide]hide hack not working for me[/hide]

any idea what might be causing this problem?
thanks

itsid 02-21-2007 11:00 AM

you're sure that you did not posted that to forumid 2 ? ;)

Oh and remember: NO PREVIEW you MUST post to see if it's working.

'sid

xenon58 02-21-2007 02:49 PM

Quote:

Originally Posted by ahmednadir (Post 1187246)

if I enter [hide]hide hack not working for me[/hide]

It appears the same [hide]hide hack not working for me[/hide]

any idea what might be causing this problem?
thanks

first make sure that you do have 'post thank you' hack, before you install this one
and when you are trying to see if its working or not, you will have to post a thread
using hide tags, then login as a different user, but not an administrator!!!, and see
if it worked for ya or not. remember, admins will be able to see everything that is in
hide tags, even not your own posts. so make sure when testing, you are using user
with regular permissions. do that, and then say if it worked or not. g'luck

Skavenger 02-21-2007 06:26 PM

Quote:

Originally Posted by stinger2 (Post 1187037)
hi sid

you mean this?

i still have it in my favourite
https://vborg.vbsupport.ru/showpost....&postcount=259

Quote:

Originally Posted by itsid (Post 1187038)
So skavanger .... try that one; it'll do for you I guess ;)

It's working fine now, thank you!

bollie 02-22-2007 11:44 AM

Quote:

Originally Posted by itsid (Post 1149445)
Yes it is.. a huge difference :D
if you thanked this hack won't do a db query if you (as you have it) can thank each post and not only the first one.
but in your case that won't do somehow.
so replace your fetch hide tag plugin by this code:
PHP Code:

if ($this->registry->options['sid_hide_active'] == '1' AND stristr($post['message'],'[hide]')){
            global 
$vbulletin$vboptions$bbuserinfo$db$threadid$hide_call$postid;
            
$bbuserinfo $this->registry->userinfo;
            
$post $this->post;
            
$hide_read false;
            
$hide_img_set 0;
            
$hide_replied '';
            
$hide_thanked '';
            
$hide_stop 0;
            if (!empty(
$this->registry->options['sid_hide_notforum'])){
                
$sid_hide_forum_stop explode(",",$this->registry->options['sid_hide_notforum']);
                if(
in_array($thread['forumid'],$sid_hide_forum_stop)){
                    
$post['message'] = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/siU''\\1'$post['message']);
                    
$hide_stop 1;
                }
            }
            if(
$post['userid'] == $bbuserinfo['userid'] AND $hide_stop == 0){
                
$post['message'] = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/siU''<fieldset><legend><span class="highlight">'.$vbphrase[sid_hide_post_own].'</span></legend>\\1</fieldset>'$post['message']);
                
$hide_stop 1;
            }
            if (
$hide_stop != 1){
                if (
$this->registry->options['sid_hide_showadmin'] AND $bbuserinfo[usergroupid]==6){
                    
$hide_read true;
                }elseif (
$this->registry->options['sid_hide_showmod'] AND can_moderate($thread['forumid'])){
                    
$hide_read true;
                }elseif (!empty(
$this->registry->options['sid_hide_showusergroup'])){
                    
$hide_groups_see explode(",",$this->registry->options['sid_hide_showusergroup']);
                    if (
in_array($bbuserinfo['usergroupid'], $hide_groups_see)){
                        
$hide_read true;
                    }
                }
                if (
$vbulletin->options['sid_hide_showthanked'] AND $hide_read==false){
                    
$hide_img_set $hide_img_set 1;
                    if(
$vbulletin->options['post_thanks_forum_first_all'] == 1){
                        
$hide_thanked $db->query_first("SELECT userid FROM "TABLE_PREFIX ."post_thanks WHERE postid='$threadinfo[firstpostid]' AND userid='$bbuserinfo[userid]'");
                        if(
$hide_thanked !=''){
                            
$hide_read true;
                        }
                    } elseif (!empty(
$vbulletin->options['post_thanks_forum_first'])){
                        
$post_thanks_only_first explode("|",$vbulletin->options['post_thanks_forum_first']);
                        if (
in_array($threadinfo['forumid'], $post_thanks_only_first)){
                            
$hide_thanked $db->query_first("SELECT userid FROM "TABLE_PREFIX ."post_thanks WHERE postid='$threadinfo[firstpostid]' AND userid='$bbuserinfo[userid]'");
                            if(
$hide_thanked !=''){
                                
$hide_read true;
                            }
                        }else{
                            
$hide_thanked $db->query_first("SELECT userid FROM "TABLE_PREFIX ."post_thanks WHERE postid='$post[postid]' AND userid='$bbuserinfo[userid]'");
                            if(
$hide_thanked !=''){
                                
$hide_read true;
                            }
                        }
                    } else{
                        
$hide_thanked $db->query_first("SELECT userid FROM "TABLE_PREFIX ."post_thanks WHERE postid='$post[postid]' AND userid='$bbuserinfo[userid]'");
                        if(
$hide_thanked !=''){
                            
$hide_read true;
                        }
                    }
                }
                if (
$this->registry->options['sid_hide_showposted'] AND $hide_read==false){
                    
$hide_img_set $hide_img_set ;
                    
$hide_replied $db->query("SELECT COUNT(postid) AS count FROM "TABLE_PREFIX "post WHERE userid='$bbuserinfo[userid]' AND visible = 1 AND threadid='$post[threadid]'");
                    
$myreplies 0;
                    if(
$db->num_rows($hide_replied)){
                        while (
$h_post $db->fetch_array($hide_replied)){
                            
$myreplies += $h_post['count'];
                        }
                        
$myreplies vb_number_format($myreplies);
                    }
                    if(
$myreplies 0){
                        
$hide_read['userid'] = true;
                    }
                }
                if (!
$hide_call){
                    
$hide_call =$post['postid'];
                } else {
                    
$hide_call .=",".$post['postid'];
                }
                if(
$hide_img_set == 3){
                    
$hide_img $vbphrase[sid_hide_img_pot];
                } elseif (
$hide_img_set == 2){
                    
$hide_img $vbphrase[sid_hide_img_post];
                } elseif (
$hide_img_set == 1){
                    
$hide_img $vbphrase[sid_hide_img_thank];
                } else {
                    
$hide_img $vbphrase[sid_hide_img_sorry];
                }
                if(!
$bbuserinfo[userid]){
                    
$hide_read false;
                }
                if (
$hide_read == true){
                    
$post['message'] = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/siU''<fieldset><legend><span class="highlight">'.$vbphrase[sid_hide_post_show].'</span></legend>\\1</fieldset>'$post['message']);
                } else {
                    eval(
'$hide_fetch = "' fetch_template('sid_hide_noaccess') . '";');
                    
$post['message'] = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/siU'$hide_fetch$post['message']);
                }
            }
        } 

that'll add an own db query for thanked posts and is not using the original array.

This one will surely work.

(I hat to have unnecessary querys, but I see no other chance right now to get this to work in your forums.)

'sid

ps don't forget to delete the debug plugin! that's causing a lot of querys too :D

Thx work nice ;)

hotmasala4u 02-23-2007 04:36 PM

hi may be u guys knw how 2 not have a pop up and then put what text u wannna hide rather than just having {hide} {/hide} to come in the post


All times are GMT. The time now is 01:05 PM.

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.03010 seconds
  • Memory Usage 1,899KB
  • 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
  • (5)bbcode_php_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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