When clicking the 'quote' button on a post I would like a new post to be created including the quoted text but WITHOUT the bbcode [ quote ] [ /quote ] around it, and only in specific forums.
I'm fairly clueless about if statements and have just tried different variations based on what I've found on various vb forums and nothing seems to be working.
In the 'newpost_quote' template I have tried the following:
PHP Code:
<if condition="THIS_SCRIPT == 'newreply' AND $forumid == 74">{$pagetext}<else />[QUOTE=$originalposter]{$pagetext}[/QUOTE]</if>
PHP Code:
<if condition="THIS_SCRIPT == 'newpost' AND $forumid == 74">{$pagetext}<else />[QUOTE=$originalposter]{$pagetext}[/QUOTE]</if>
PHP Code:
<if condition="$forumid == 74">{$pagetext}<else />[QUOTE=$originalposter]{$pagetext}[/QUOTE]</if>
PHP Code:
<if condition="in_array($forumid,array(74,75,76))">{$pagetext}<else />[QUOTE=$originalposter]{$pagetext}[/QUOTE]</if>
PHP Code:
<if condition="in_array($forumid,array(74,75,76))">{$pagetext}<else />[QUOTE=$originalposter]{$pagetext}[/QUOTE]</if>

Any help would be greatly appreciated. I'm using v 3.8.5.
p.s. I've also tried to add the 'if' in the 'bbcode_php_printable' template