The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
MARCO1 BBCODE Hide Tags [ hide] [/ hide] Details »» | ||||||||||||||||||||||||||||||||||||
MARCO1 BBCODE Hide Tags vB4.x.x By Marco Mamdouh Please Note that : I'm keeping update my products and codes without any money simply support me in vb.org to continue this work Support Me! Mark As Installed - Nominate For MOTM What's this ? This Mod Hide X Area in the threads By Using HIDE BBCODE Tags With Powerful control via AdminCp with very nice button in your editor to automatically enter Hide tags when you click on it, More info and pictures in Attachments. Features :
Upload images folder in your forum root directory. Import the .xml file from your AdminCp. Require 1 Template edit : In editor_toolbar_on template find : HTML Code:
<vb:if condition="!$show['basicbbcodeonly']">
HTML Code:
<img src="images/buttons/hide.gif" class="imagebutton" id="{vb:raw editorid}_cmd_wrap0_hide" width="20" height="20" alt="Insert Hide Tags" />
Screenshots & Download : In Attachments. If you want more Hide Images ? TimberFloorAu Has Made very very very Good images in this post : https://vborg.vbsupport.ru/showpost....6&postcount=49 PSD Images : https://vborg.vbsupport.ru/showpost....1&postcount=52 Many thanks to him for his time. Translations : You can translate this Mod and publish it in your forum however you can't do that without take permissions from Me via PM's This Mod Is Also Available in Arabic Thanks to DR.Osama : https://vborg.vbsupport.ru/showpost....6&postcount=42 English Version in Attachments. BUGS : Quote:
I'm sorry But I really don't have much time to update any of my free mods at this time. DON'T FORGET TO SUPPORT ME Download Now
Screenshots
Supporters / CoAuthors Show Your Support
|
8 благодарности(ей) от: | ||
Babis 92, blue7, ChiNa, josner, mohammadxxx, smsma.net, sweetpotato, vBarsiv |
Comments |
#202
|
|||
|
|||
Those are the things we wanted fixed yellow.. that and it pops up a scalar error.. when I asked marco what the fix for it was.. he told me to erase all the user groups and put 0 that would fix it.. but then whats the point of using the mod if everyone can see everything? I am in need for a fix for this mod.. or someone to make one that works right
|
#203
|
|||
|
|||
MARCO1 an update is needed PLEASE, nothing is really hidden...
|
#204
|
|||
|
|||
he isn't going to update anything, too bad.
|
#205
|
|||
|
|||
I think Marco is to busy with his girlfriend to hide
Marco can you give your users a update about this all please? |
#206
|
|||
|
|||
Can this hack also work by instead of a user replying to a thread, they can just click the 'thanks' button to see the post content?
|
#207
|
|||
|
|||
Can you please update this mod?
|
#208
|
|||
|
|||
please update this mod
|
#209
|
|||
|
|||
PROBLEM FIXED !!!!!!
Its an array function Syntax Problem and was easy to fix it.... all you have to do is to find and replace inside the script all in_array function with the correct syntax. Marco uses syntax like ... in_array($vbulletin->userinfo['usergroupid'],$MARCO1_NoHideUSG) , which is wrong and lead to array corruption. The Correct is in_array($vbulletin->userinfo['usergroupid'],array(MARCO1_NoHideUSG)) Steps : 1: Open the Product MARCO1 BBCODE Hide vB4.xml using an editor like wordpad 2: Edit -> Select all & Delete 3: Paste the next Script. Code:
<?xml version="1.0" encoding="ISO-8859-1"?> <product productid="marco1_hidebbcode" active="1"> <title>MARCO1 Hide BBCODE</title> <description>Hide X Area From your threads With BBCODES</description> <version>2.0</version> <url /> <versioncheckurl /> <dependencies> </dependencies> <codes> </codes> <templates> </templates> <stylevardfns> </stylevardfns> <stylevars> </stylevars> <plugins> <plugin active="1" executionorder="126"> <title>MARCO1 Hide BBCODE Functions</title> <hookname>postbit_display_complete</hookname> <phpcode><![CDATA[if ($_REQUEST['do'] == 'whatever'){ global $vbulletin, $vboptions, $bbuserinfo, $db, $threadid, $postid; $bbuserinfo = $this->registry->userinfo; $postid = $_REQUEST['p']; $hide_call = $_REQUEST['all']; $hide_read = false; $hide_replied = ''; $hide_thanked = ''; $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 = true; } if(!$bbuserinfo[userid]){ $hide_read = false; } if( $hide_read == true){ $hide_post = $db->query_first("SELECT pagetext as 'message' FROM ". TABLE_PREFIX ."post WHERE postid='$postid'"); $hide_string = "#\[hide\](.*)\[\/hide\]#siU"; require_once(DIR . '/includes/class_bbcode.php'); $parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list()); $hide_post['message'] = $parser->do_parse($hide_post['message'],true); if(preg_match_all($hide_string, $hide_post['message'], $hide_match)) { for($i=0; $i<count($hide_match[0]); $i++) { $hide_replace[$i] ="<fieldset>".$hide_match[1][$i]."</fieldset>"; $hide_post['message']= str_replace($hide_match[0][$i],$hide_replace[$i],$hide_post['message']); } } } $ajax_on = true; $output = $hide_post['message']; echo "$output"; exit; }]]></phpcode> </plugin> <plugin active="1" executionorder="126"> <title>MARCO1 Hide BBCODE Functions (M)</title> <hookname>postbit_display_complete</hookname> <phpcode><![CDATA[if ($this->registry->options['MARCO1_BBHideon'] == '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_replied = ''; $hide_stop = 0; if (!empty($this->registry->options['MARCO1_HideForumID'])){ $MARCO1_Forum_NOHIDE = explode(" ",$this->registry->options['MARCO1_HideForumID']); if(in_array($thread['forumid'], array(MARCO1_Forum_NOHIDE))){ $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>\\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; } $MARCO1_NoHideUSG = split(',',$vbulletin->options['MARCO1_NoHideUSG']); if ($vbulletin->options['MARCO1_BBHideon'] AND in_array($vbulletin->userinfo['usergroupid'], array(MARCO1_NoHideUSG))){ $hide_read = true; } } $hide_img_set = $hide_img_set + 2 ; $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(!$bbuserinfo[userid]){ $hide_read = false; } if ($hide_read == true){ $post['message'] = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/siU', '<fieldset>\\1</fieldset>', $post['message']); } else { $hide_fetch = $vbulletin->options['MARCO1_HIDEMESSAGE']; $post['message'] = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/siU', $hide_fetch, $post['message']); } }]]></phpcode> </plugin> <plugin active="1" executionorder="5"> <title>MARCO1 Print Pages Hide BBCODE Functions</title> <hookname>printthread_post</hookname> <phpcode><![CDATA[if($vbulletin->options['MARCO1_BBHideon']AND stristr($post['message'],'[hide]')){ global $vbulletin, $vboptions, $bbuserinfo, $db; $bbuserinfo = $vbulletin->userinfo; $hide_read = false; $hide_stop = 0; $hide_img_set = 0; if (!empty($vbulletin->options['MARCO1_HideForumID'])){ $MARCO1_hide_forum_stop = explode(" ",$vbulletin->options['MARCO1_HideForumID']); if(in_array($threadinfo['forumid'], array(MARCO1_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', '\\1', $post['message']); $hide_stop = 1; } if ($hide_stop != 1){ $MARCO1_NoHideUSG = split(',',$vbulletin->options['MARCO1_NoHideUSG']); if ($vbulletin->options['MARCO1_BBHideon'] AND in_array($vbulletin->userinfo['usergroupid'], array(MARCO1_NoHideUSG))){ $hide_read = true; } $hide_img_set = $hide_img_set + 2 ; $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(!$bbuserinfo[userid]){ $hide_read = false; } $hide_img = $vbulletin->options[MARCO1_HIDEMESSAGE]; if($hide_read == true){ $post['message'] = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/siU', '\\1', $post['message']); } else { $post['message'] = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/siU', $hide_img, $post['message']); } } }]]></phpcode> </plugin> </plugins> <phrases> <phrasetype name="vBulletin Settings" fieldname="vbsettings"> <phrase name="setting_MARCO1_BBHideon_desc" date="1265211380" username="MARCO1" version="1.1"><![CDATA[Choose yes if you want to enable Hide BBCODE]]></phrase> <phrase name="setting_MARCO1_BBHideon_title" date="1265211380" username="MARCO1" version="1.1"><![CDATA[Enable MARCO1 Hide BBCODE ?]]></phrase> <phrase name="setting_MARCO1_HIDEMESSAGE_desc" date="1265211504" username="MARCO1" version="1.1"><![CDATA[That's the Hide content message that's will appear when you hide something using the Mod.]]></phrase> <phrase name="setting_MARCO1_HIDEMESSAGE_title" date="1265211504" username="MARCO1" version="1.1"><![CDATA[What's the Hide Message ?]]></phrase> <phrase name="setting_MARCO1_HideForumID_desc" date="1265675231" username="MARCO1" version="1.1"><![CDATA[Add Forum ID's of forums that you will not need to use BBCODE Hide Content on it.]]></phrase> <phrase name="setting_MARCO1_HideForumID_title" date="1265675231" username="MARCO1" version="1.1"><![CDATA[Excluding Forum of BBCODE Hide]]></phrase> <phrase name="setting_MARCO1_NoHideUSG_desc" date="1265677222" username="MARCO1" version="1.1"><![CDATA[<p>What's the Usergroups that's can view the hidden content without reply ?<br> <strong>Separate with ","</strong><br> <strong>By Default I allow Moderators, Admins and Super Moderators to see hidden content without reply</strong></p>]]></phrase> <phrase name="setting_MARCO1_NoHideUSG_title" date="1265677222" username="MARCO1" version="1.1"><![CDATA[Usergroups Permissions]]></phrase> <phrase name="settinggroup_MARCO1_HIDEBBCODE_SETTINGS" date="1265211320" username="MARCO1" version="1.1"><![CDATA[MARCO1 Hide BBCODE Settings]]></phrase> </phrasetype> </phrases> <options> <settinggroup name="MARCO1_HIDEBBCODE_SETTINGS" displayorder="65535"> <setting varname="MARCO1_BBHideon" displayorder="10"> <datatype>free</datatype> <optioncode>yesno</optioncode> <defaultvalue>1</defaultvalue> </setting> <setting varname="MARCO1_HIDEMESSAGE" displayorder="20"> <datatype>free</datatype> <optioncode>textarea</optioncode> <defaultvalue><![CDATA[<img src="images/hide.gif">]]></defaultvalue> </setting> <setting varname="MARCO1_HideForumID" displayorder="30"> <datatype>free</datatype> <defaultvalue>0</defaultvalue> </setting> <setting varname="MARCO1_NoHideUSG" displayorder="40"> <datatype>free</datatype> <defaultvalue>5,6,7</defaultvalue> </setting> </settinggroup> </options> <helptopics> </helptopics> <cronentries> </cronentries> <faqentries> </faqentries> </product> 4: Save the file 5: Upload again the new file using as always vb product manager and install it. You can see a sample of a working mod HERE Now all working as it should. Do it and inform me if is OK... Xtremecoders.org |
#210
|
|||
|
|||
Quote:
|
#211
|
|||
|
|||
SORRY for the MISTAKE.
I was wrong and Problem was appears again. SO, i found the Problem, and ALL is OK now. PROBLEM FIXED !!!!!! Its an array function Syntax Problem and was easy to fix it.... all you have to do is to find and replace inside the script all in_array function with the correct syntax. Marco uses syntax like ... in_array($vbulletin->userinfo['usergroupid'],$MARCO1_NoHideUSG) , which is wrong and lead to array corruption. The Correct is in_array($vbulletin->userinfo['usergroupid'], $MARCO1_NoHideUSG, true)) Steps : 1: Open the Product MARCO1 BBCODE Hide vB4.xml using an editor like wordpad 2: Edit -> Select all & Delete 3: Paste the next Script. Code:
<?xml version="1.0" encoding="ISO-8859-1"?> <product productid="marco1_hidebbcode" active="1"> <title>MARCO1 Hide BBCODE</title> <description>Hide X Area From your threads With BBCODES</description> <version>2.0</version> <url /> <versioncheckurl /> <dependencies> </dependencies> <codes> </codes> <templates> </templates> <stylevardfns> </stylevardfns> <stylevars> </stylevars> <plugins> <plugin active="1" executionorder="126"> <title>MARCO1 Hide BBCODE Functions</title> <hookname>postbit_display_complete</hookname> <phpcode><![CDATA[if ($_REQUEST['do'] == 'whatever'){ global $vbulletin, $vboptions, $bbuserinfo, $db, $threadid, $postid; $bbuserinfo = $this->registry->userinfo; $postid = $_REQUEST['p']; $hide_call = $_REQUEST['all']; $hide_read = false; $hide_replied = ''; $hide_thanked = ''; $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 = true; } if(!$bbuserinfo[userid]){ $hide_read = false; } if( $hide_read == true){ $hide_post = $db->query_first("SELECT pagetext as 'message' FROM ". TABLE_PREFIX ."post WHERE postid='$postid'"); $hide_string = "#\[hide\](.*)\[\/hide\]#siU"; require_once(DIR . '/includes/class_bbcode.php'); $parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list()); $hide_post['message'] = $parser->do_parse($hide_post['message'],true); if(preg_match_all($hide_string, $hide_post['message'], $hide_match)) { for($i=0; $i<count($hide_match[0]); $i++) { $hide_replace[$i] ="<fieldset>".$hide_match[1][$i]."</fieldset>"; $hide_post['message']= str_replace($hide_match[0][$i],$hide_replace[$i],$hide_post['message']); } } } $ajax_on = true; $output = $hide_post['message']; echo "$output"; exit; }]]></phpcode> </plugin> <plugin active="1" executionorder="126"> <title>MARCO1 Hide BBCODE Functions (M)</title> <hookname>postbit_display_complete</hookname> <phpcode><![CDATA[if ($this->registry->options['MARCO1_BBHideon'] == '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_replied = ''; $hide_stop = 0; if (!empty($this->registry->options['MARCO1_HideForumID'])){ $MARCO1_Forum_NOHIDE = explode(" ",$this->registry->options['MARCO1_HideForumID']); if(in_array($thread['forumid'], $MARCO1_Forum_NOHIDE, true)){ $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>\\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; } $MARCO1_NoHideUSG = split(',',$vbulletin->options['MARCO1_NoHideUSG']); if ($vbulletin->options['MARCO1_BBHideon'] AND in_array($vbulletin->userinfo['usergroupid'], $MARCO1_NoHideUSG, true)){ $hide_read = true; } } $hide_img_set = $hide_img_set + 2 ; $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(!$bbuserinfo[userid]){ $hide_read = false; } if ($hide_read == true){ $post['message'] = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/siU', '<fieldset>\\1</fieldset>', $post['message']); } else { $hide_fetch = $vbulletin->options['MARCO1_HIDEMESSAGE']; $post['message'] = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/siU', $hide_fetch, $post['message']); } }]]></phpcode> </plugin> <plugin active="1" executionorder="5"> <title>MARCO1 Print Pages Hide BBCODE Functions</title> <hookname>printthread_post</hookname> <phpcode><![CDATA[if($vbulletin->options['MARCO1_BBHideon']AND stristr($post['message'],'[hide]')){ global $vbulletin, $vboptions, $bbuserinfo, $db; $bbuserinfo = $vbulletin->userinfo; $hide_read = false; $hide_stop = 0; $hide_img_set = 0; if (!empty($vbulletin->options['MARCO1_HideForumID'])){ $MARCO1_hide_forum_stop = explode(" ",$vbulletin->options['MARCO1_HideForumID']); if(in_array($threadinfo['forumid'], $MARCO1_hide_forum_stop, true)){ $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', '\\1', $post['message']); $hide_stop = 1; } if ($hide_stop != 1){ $MARCO1_NoHideUSG = split(',',$vbulletin->options['MARCO1_NoHideUSG']); if ($vbulletin->options['MARCO1_BBHideon'] AND in_array($vbulletin->userinfo['usergroupid'], $MARCO1_NoHideUSG, true)){ $hide_read = true; } $hide_img_set = $hide_img_set + 2 ; $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(!$bbuserinfo[userid]){ $hide_read = false; } $hide_img = $vbulletin->options[MARCO1_HIDEMESSAGE]; if($hide_read == true){ $post['message'] = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/siU', '\\1', $post['message']); } else { $post['message'] = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/siU', $hide_img, $post['message']); } } }]]></phpcode> </plugin> </plugins> <phrases> <phrasetype name="vBulletin Settings" fieldname="vbsettings"> <phrase name="setting_MARCO1_BBHideon_desc" date="1265211380" username="MARCO1" version="1.1"><![CDATA[Choose yes if you want to enable Hide BBCODE]]></phrase> <phrase name="setting_MARCO1_BBHideon_title" date="1265211380" username="MARCO1" version="1.1"><![CDATA[Enable MARCO1 Hide BBCODE ?]]></phrase> <phrase name="setting_MARCO1_HIDEMESSAGE_desc" date="1265211504" username="MARCO1" version="1.1"><![CDATA[That's the Hide content message that's will appear when you hide something using the Mod.]]></phrase> <phrase name="setting_MARCO1_HIDEMESSAGE_title" date="1265211504" username="MARCO1" version="1.1"><![CDATA[What's the Hide Message ?]]></phrase> <phrase name="setting_MARCO1_HideForumID_desc" date="1265675231" username="MARCO1" version="1.1"><![CDATA[Add Forum ID's of forums that you will not need to use BBCODE Hide Content on it.]]></phrase> <phrase name="setting_MARCO1_HideForumID_title" date="1265675231" username="MARCO1" version="1.1"><![CDATA[Excluding Forum of BBCODE Hide]]></phrase> <phrase name="setting_MARCO1_NoHideUSG_desc" date="1265677222" username="MARCO1" version="1.1"><![CDATA[<p>What's the Usergroups that's can view the hidden content without reply ?<br> <strong>Separate with ","</strong><br> <strong>By Default I allow Moderators, Admins and Super Moderators to see hidden content without reply</strong></p>]]></phrase> <phrase name="setting_MARCO1_NoHideUSG_title" date="1265677222" username="MARCO1" version="1.1"><![CDATA[Usergroups Permissions]]></phrase> <phrase name="settinggroup_MARCO1_HIDEBBCODE_SETTINGS" date="1265211320" username="MARCO1" version="1.1"><![CDATA[MARCO1 Hide BBCODE Settings]]></phrase> </phrasetype> </phrases> <options> <settinggroup name="MARCO1_HIDEBBCODE_SETTINGS" displayorder="65535"> <setting varname="MARCO1_BBHideon" displayorder="10"> <datatype>free</datatype> <optioncode>yesno</optioncode> <defaultvalue>1</defaultvalue> </setting> <setting varname="MARCO1_HIDEMESSAGE" displayorder="20"> <datatype>free</datatype> <optioncode>textarea</optioncode> <defaultvalue><![CDATA[<img src="images/hide.gif">]]></defaultvalue> </setting> <setting varname="MARCO1_HideForumID" displayorder="30"> <datatype>free</datatype> <defaultvalue>0</defaultvalue> </setting> <setting varname="MARCO1_NoHideUSG" displayorder="40"> <datatype>free</datatype> <defaultvalue>5,6,7</defaultvalue> </setting> </settinggroup> </options> <helptopics> </helptopics> <cronentries> </cronentries> <faqentries> </faqentries> </product> 4: Save the file 5: Upload again the new file using as always vb product manager and install it. You can see a sample of a working mod HERE Now all working as it should. Do it and inform me if is OK... Xtremecoders.org |
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|