The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vFCoders - Hide Hack v4 Details »» | |||||||||||||||||||||||||||||||||||
.::vFCoders - Hide Hack::. This MOD gives users in selected forums the ability to hide their content by using any of the 7 BBCode. ([HIDE], [HIDE-REPLY], [HIDE-THANKS], [HIDE-REPLY-THANKS], [HIDE-POSTS], [SHOWTOGROUPS], [STG]) 1. Features
2. Installation
3. Settings
4. DEMO http://screencast-o-matic.com/watch/clhnrr5e9 5. Support Support will be provided to those who have my copyright link in their sites. Mod History: v1.0 : 3 May 2012 : First Release. v1.01 : 3 May 2012 : Fixed Thanks Bug. v1.1 : 3 May 2012 : Added vBSEO Like System Integration Function v1.2 : 4 May 2012 : Now compatible with vB < 4.1.4 also. v1.3 : 4 May 2012 : Fixed PM Bug. v2.0 (RC) : 4 May 2012 : Optimized Codes and fixed a minor bug. v2.1 (RC) : 13 May 2012 : Fixed a minor bug. v2.2 (RC) : 23 May 2012 : Changed Ajax Request Method, Added 1 new Plugin and also removed few. v3.0 (GOLD) : 10 June 2012 : Added STU tag, Optimize Codes, Fix [SHOWTOGROUPS] Tag Bug, Added Hide/Unhide Box v3.1 : 13 June 2012 : Fix Hide tag mapped issue. v4.0 : 7 July 2012 : Now mod uses YUI for ajax requests and fixed some minor bugs. -> Click On Mark As Installed If You Have Installed This Mod. -> You Can Nominate it also for Mod Of The Month. -> If u like my work, you can Donate me also. Download Now
Screenshots
Show Your Support
|
23 благодарности(ей) от: | ||
Azucar, BCP Hung, bing11, blueperspective, cavebox, deen1982, dwx, Fenomeno10, Gemma, Gn_Snake, Hippy, mocua, mohammadxxx, nacaruncr, Nirjonadda, PsicoByte, Randhal007, rbc, Skaut, Strik3, teknisi |
Comments |
#132
|
|||
|
|||
**Hidden Content: Reply to see the content**
how can we change the color and font size of this Text... how can we change this text to blinking. like Cursor blink? is there any way to make prominant these words like to change color or blinking style??? |
#133
|
|||
|
|||
**Hidden Content: Reply to see the content**
how can we change the color and font size of this Text... how can we change this text to blinking. like Cursor blink? is there any way to make prominant these words like to change color or blinking style??? |
Благодарность от: | ||
blueperspective |
#134
|
|||
|
|||
Quote:
Find: Code:
{vb:rawphrase vfc_hidden_content_reply_ntml} Code:
<blink>{vb:rawphrase vfc_hidden_content_reply_ntml}</blink> |
#135
|
|||
|
|||
I have a question on the same field: Where can I change "** Hidden Content: You don't have sufficient privileges to see this hidden data **" ?
Thanks in advance! Till now, the mod works wonderful! |
#136
|
|||
|
|||
Quote:
Code:
vfc_hidden_content_stg_ntml |
#137
|
|||
|
|||
you just
Is it possible to display an image instead of displaying that text **Hidden Content: Reply to see the content** image which designed by me and showing the message to reply or press thanks? |
#138
|
|||
|
|||
Seems obvious, but you need a [HIDE-VOTE] option as well so that people can say things in a thread thats hidden to people who haven't already voted.
Approximately this; Code:
/** * Callback function for Parsing [HIDE-VOTE] Tag * * @param string Message text * * @return Message (Parsed) */ function p_bb_code_hv($message) { global $vbphrase; $message = str_replace('\"', '"', $message); // Checking if user can view the message if (!$this->_registry->owner) { if ($this->_registry->threadid) { $creply = $this->_vbulletin->db->query_first(" SELECT p.pollid, p.votedate FROM " . TABLE_PREFIX . "thread t left join " . TABLE_PREFIX . "pollvote p on t.pollid = p.pollid WHERE p.userid = " . $this->_vbulletin->userinfo[userid] . " AND t.threadid = " . $this->_registry->threadid . " AND userid > 0 LIMIT 1 "); if ($creply['pollid'] > 0 AND $creply['votedate'] > 0) $this->_registry->hvote = true; } if ($this->_registry->dohtml) { if ($this->_registry->owner OR $this->_registry->hvote) { $usercansee = true; } $templater = vB_Template::create('vfc_hide_hack_bbcode_vote'); $templater->register('usercansee', $usercansee); $templater->register('postid', $this->_registry->postid); $templater->register('message', $message); $message = $templater->render(); return $message; } else { if ($this->_registry->owner OR $this->_registry->hvote) { return $message; } else { return $vbphrase[vfc_hidden_content_reply_vote];; } } } return $message; } And adding this 'HIDE-VOTE' => 'p_bb_code_hv', to $taglist etc. You could go one step more complex and make a hide-vote-option that's only visible to people who selected a specific vote option, but seems unnecessarily complex for most usage. Otherwise very good mod. |
#139
|
|||
|
|||
i think you failed to Got my point.
i just Want to Display Image(jpg banner) instead of the text hiddent content |
#140
|
|||
|
|||
How Can we hide Attachments???
Cuz when i do attachment then there is nothing displayed in text editor . and after submiting it displayed attached file in thread. |
#141
|
|||
|
|||
Quote:
Replace PHP Code:
Code:
<img src="yourimgurl" alt="{vb:rawphrase vfc_hidden_content_reply_ntml}"> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|