N Nights New Member Nov 6, 2008 #1 http://www.vbulletin.org/forum/showpost.php?p=1589300&postcount=75 Click to expand... I need this part of the thread please. Is the fix for the striketrough bug in the mod of Individual Html Markup. Thanks.
http://www.vbulletin.org/forum/showpost.php?p=1589300&postcount=75 Click to expand... I need this part of the thread please. Is the fix for the striketrough bug in the mod of Individual Html Markup. Thanks.
P Psilocybin_vbulletin3_import6855 New Member Nov 6, 2008 #2 A quick fix for the strikethrough: 1. AdminCP > Plugins & Products > Plugin Manager > Find the Plugin Titled: "Opserty: (6) Apply Markup" 2. Click the Title or click on [Edit] 3. In the "PHP Code:" text box. Find: Code: $user['musername'] = str_replace('{OP_USERNAME}', $username, $user['op_markup']); 4. Replace it with: Code: $user['musername'] = str_replace(array('{OP_USERNAME}', 'strikethrough'), array($username, 'line-through'), $user['op_markup']); 5. Hit Save.
A quick fix for the strikethrough: 1. AdminCP > Plugins & Products > Plugin Manager > Find the Plugin Titled: "Opserty: (6) Apply Markup" 2. Click the Title or click on [Edit] 3. In the "PHP Code:" text box. Find: Code: $user['musername'] = str_replace('{OP_USERNAME}', $username, $user['op_markup']); 4. Replace it with: Code: $user['musername'] = str_replace(array('{OP_USERNAME}', 'strikethrough'), array($username, 'line-through'), $user['op_markup']); 5. Hit Save.