Version
* SMF 2.0 RC5
Description
* Hide content within a certain BBCode from guests (mine is a custom BBCode called [quid] [/quid]).
Permissions
None
Feature Set
* Admin Option: Turn feature on/off
* No member options
Thanks for posting the topic!
i was searching for one.
SUPPORT
Same!
There's a mod/code edit in Tips & Tricks to hide contents within the [*code] tag... I tried figuring it out to get it to work for my custom BBCode, but I couldn't. *sadface*
array(
'tag' => 'br',
'type' => 'closed',
'content' => '<br />',
),
array(
'tag' => 'quid',
'type' => 'unparsed_content',
'content' => '$1',
'validate' => create_function('&$tag, &$data, $disabled', 'global $user_info; $data = !$user_info[\'is_guest\'] ? $data : \'\';'),
),
Oh wow thank you! :D
That worked! <3