The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
Hello i have been add new custom bbcode which all my users used in their threads and i would like to divide this one bbcode for condition member & guest
like [zs] Hello member {param} Hello guest {param} [/zs] and bbcode show only for guest or members code i try to add up condition <if condition="$show['member']"></if> AND <if condition="$show['guest']"></if> there is some hack to do sth like that ? |
#2
|
||||
|
||||
![]()
You cannot use conditionals in custom BB codes. For this to work, you must create your own BB code through plugins (see fetch_tag_list() in class_bbcode.php). Also, you must disable post caching, otherwise, guests may see the message intended for members.
|
#3
|
|||
|
|||
![]()
sory mate but i cant solve this issue on my own
![]() i try to step by this post: https://vborg.vbsupport.ru/showpost....07&postcount=2 and i get some error could you give me few miniutes and try tell me how to use custom bbcode which cant see one of the part code my member just like on this way ... [zs] <if condition="$show['guest']">Hello my dear visitor</if> {param} [/zs] |
#4
|
|||
|
|||
![]()
I just do it ! but still have problem
problem is with {param} i cant see it ... Look what i've done till now.... #1 open: includes/class_bbcode.php ADD somewhere function handle_bbcode_my_special_code($my_code_text) { global $vbulletin, $show; $template = 'my_code_display'; eval('$html = "' . fetch_template($template) . '";'); return $html; } #2 ADD before //URL // [special code] $tag_list['no_option']['my-special-code'] = array( 'callback' => 'handle_bbcode_my_special_code' ); #3 create new template: my_code_display paste this code: <if condition="$show[guest]">Hi guest</if> <if condition="$show[member]">hi member</if> now when i try to add up some words between [my-special-code] xxx [/my-special-code] i cant se the xxx but only Hi guest or Hi member how to add up the words between my TAG's |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|