Hi,
I've changed a default td class (alt1) to a custom class (alt7 - in additional css definitions) in my postbit_legacy template and Inline Moderation Element Highlight feature doesn't work when i tick the box at the right top corner of the post.
I've found some codes releated:
In vbulletin_inlinemod.js, line 294:
changed it with the code below:
But it didn't work. I really need to re-enable the highlighting to prevent accidental deletions while keeping the new td style.
If it's possible to do by the template edits, please tell me which templates or css section.
Hope not to get the reply "This requires code modification, please go to vbulletin.org...."
I've changed a default td class (alt1) to a custom class (alt7 - in additional css definitions) in my postbit_legacy template and Inline Moderation Element Highlight feature doesn't work when i tick the box at the right top corner of the post.
<if condition="$show['moderated']">
<td class="alt2" id="td_post_$post[postid]">
<else />
<td class="alt7" id="td_post_$post[postid]">
</if>
<td class="alt2" id="td_post_$post[postid]">
<else />
<td class="alt7" id="td_post_$post[postid]">
</if>
In vbulletin_inlinemod.js, line 294:
if (cell.className == 'alt1' || cell.className == 'alt2' || cell.className == 'inlinemod')
if (cell.className == 'alt7' || cell.className == 'alt1' || cell.className == 'alt2' || cell.className == 'inlinemod')
If it's possible to do by the template edits, please tell me which templates or css section.
Hope not to get the reply "This requires code modification, please go to vbulletin.org...."

Comment