The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vS-Hide Hack Resurrection Details »» | |||||||||||||||||||||||||||||||||||||||||||||
I no longer support my hacks. Please feel free to update them and release new versions elsewhere as long as I get the credit for the original modification.
/*===================================*\ || vS-Hide Hack Resurrection (Limited Edition) || || Author : Anton Kanevsky || Works on : vBulletin 4.0.x || Released : Mar 12, 2010 || || Time required to install: ~2 minutes || Difficulty: easy \*===================================*/ DESCRIPTION Have you ever wanted your users to be able to define who exactly can view the information in any particular post? vS-Hide Hack Resurrection, a vBulletin expansion, features a set of handy tags that together give your users an opportunity to do just that: [HIDE-POSTS]: defines the minimum number of posts required to read the content within. [SHOWTOGROUPS]: defines the usergroups that may read the content within. [HIDE-THANKS]*: defines that the content within may only be read after the person says thank you by pressing a special button. (Expanded Edition Only) [HIDE-REPLY]*: defines that the content within may only be read after the person replies. (Expanded Edition Only) [STU]: defines the users that may read the content within. (Expanded Edition Only) *(1): The HIDE-THANKS tag comes with a full-featured Post Thank You System. See features for further details. *(2): The HIDE-REPLY tag can be reversed to HIDE with just one easy switch of an admincp option. STATISTICS File Uploads: 1 File Changes: 5 Products to Install: 1 FEATURES General
Integrated "Thank You" System ? (Expanded Edition Only)
INTRODUCTION Why "Resurrection"? The reason is simple: This hack has been written many times by various people, and nobody ever got their version working correctly. This product presents a professional version written from scratch, and there are no backdoors through which hidden information can be illegally retrieved. Unlike other systems, this one works correctly with the vBulletin Post Cache. Usage Syntax: [HIDE]information[/HIDE] Shortcut code, can be mapped to any of the below ones. By default, it is mapped to HIDE-POSTS. [HIDE-POSTS=X]information[/HIDE-POSTS] Information is not shown to people who have less than X posts. Has an alternative syntax: , where X is automatically set to the value defined in vBulletin options. [HIDE-REPLY]information[/HIDE-REPLY] (Expanded Edition Only) Information is not shown to people unless they reply. [HIDE-THANKS]information[/HIDE-THANKS] (Expanded Edition Only) Information is now shown to people unless they press "Thank You" button. [HIDE-REPLY-THANKS]information[/HIDE-REPLY-THANKS] (Expanded Edition Only) Information is not shown to people unless they either reply or press "Thank You" button. [SHOWTOGROUPS=x]information[/SHOWTOGROUPS] Information is not shown to people unless they are a member of the X usergroups, where X is a comma-separated list of usergroupids. [STU=x]information[/STU] Information is not shown to people unless they are a listed in X, where X is a comma-separated list of userids. :: Copyrights :: The Engine & Toolbar Images - Copyright ? Anton Kanevsky (aka @kan), 2006 - 2010 Locked and Unlocked Images - Copyright ? vBStyles.com, 2004 - 2006, huge thanks to Miko for providing the PSD files! VERSION HISTORY Please see the attached "change_log.html" file for version history. The installation manual is contained within the attached file. IF YOU LIKE MY HACK, PLEASE CLICK INSTALL Download Now
Screenshots
Show Your Support
|
3 благодарности(ей) от: | ||
Fraxter, Michael.A, pandusetiawan |
Comments |
#62
|
|||
|
|||
please someone just share a rapidshare or megaupload or attachment link of
/clientscript/vbulletin_quick_reply.js, with the edits!!!! |
#63
|
|||
|
|||
because I cannot find either in my file
/** * Handles quick reply data when AJAX says qr_ajax_post() is complete * * @param object YUI AJAX */ function qr_do_ajax_post OR ajax_last_post = ajax.responseXML.getElementsByTagName('time')[0].firstChild.nodeValue; |
#64
|
|||
|
|||
Quote:
-------------------------------------------------- ---------- My question is what is attached below: Whenever I put links, it does replace. I vBSEO the RMU, this mod does not work with SEO? Do you have a fix? |
#65
|
|||
|
|||
not working.....
|
#66
|
|||
|
|||
not working with vBulletin 4.0.2 Patch Level 4
|
#67
|
||||
|
||||
Thank you Installed.
|
#68
|
|||
|
|||
Which Thank you mod I can use with this mod?
And can I use 1 thank you mod for both vS-Hide Hack Resurrection and kBank? |
#69
|
|||
|
|||
Will this work with signatures?
|
#70
|
|||
|
|||
In file(s) ./clientscript/vbulletin_quick_reply.js
Please ensure that you have downloaded an "uncompressed javascript" version of vbulletin. FIND /** * Handles quick reply data when AJAX says qr_ajax_post() is complete * * @param object YUI AJAX */ function qr_do_ajax_post make it to // [HIDE] Hack Resurrection :: Expanded Edition :: Hide Reply Ajax Update function hhr_get_posts() { if (hide_reply_xml.handler.readyState == 4 && hide_reply_xml.handler.status == 200 && hide_reply_xml.handler.responseXML) { var posts = fetch_tags(hide_reply_xml.handler.responseXML, 'post'); for (var i = 0; i < posts.length; i++) { var postid = fetch_tags(posts[i], 'postid')[0].firstChild.nodeValue; var message = fetch_tags(posts[i], 'message')[0].firstChild.nodeValue; fetch_object('post_message_' + postid).innerHTML = message; } if (is_ie) { hide_reply_xml.handler.abort(); } } } // [HIDE] Hack Resurrection :: Expanded Edition :: Hide Reply Ajax Update i don?t found this in the and the next is edit this one In file(s) ./clientscript/vbulletin_quick_reply.js Please ensure that you have downloaded an "uncompressed javascript" version of vbulletin. FIND ajax_last_post = ajax.responseXML.getElementsByTagName('time')[0].firstChild.nodeValue; edit in this // [HIDE] Hack Resurrection :: Expanded Edition :: Hide Reply Ajax Update var anchors = fetch_tags(fetch_object('posts'), 'div'); var postids = ''; var tmppostid = 0; for (var i = 0; i < anchors.length; i++) { if (anchors[i].id && anchors[i].id.indexOf('dis_hhr_hide_reply::') != -1 || anchors[i].id && anchors[i].id.indexOf('dis_hhr_hide_rt::') != -1) { tmppostid = anchors[i].id.substr(anchors[i].id.lastIndexOf('::') + 2); tmppostid = tmppostid.substr(0, tmppostid.lastIndexOf('_')); postids = postids + ',' + tmppostid; } } if (postids != '') { hide_reply_xml = new vB_AJAX_Handler(true); hide_reply_xml.onreadystatechange(hhr_get_posts); hide_reply_xml.send('ajax.php', 'do=hhr_get_posts&postids=' + postids.substr(1)); } // [HIDE] Hack Resurrection :: Expanded Edition :: Hide Reply Ajax Update i have found the uncompressed jave file on here http://www.vbulletinprogramming.com/...r_do_ajax_post can one please upp this edit file vbulletin_quick_reply.js vor Version 4.0.2 |
#71
|
|||
|
|||
Not working vB 4.0.3
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|