MyBB Community Forums

Full Version: How to remove poll in front of poll questions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

How do I remove Poll: from in front of poll questions.

Pic attached....
admin panel >> templates >> active theme's templates >> Show Thread Templates >> showthread_poll

find code like below & remove {$lang->poll} and save the template
<td colspan="4" class="thead" align="center"><strong>{$lang->poll} {$poll['question']}</strong></td>
hmm it didn't remove it
^ are you referring to the poll shown on the thread pages and have you edited correct template of the active theme
it removed Poll: but also removed the blue bar behind poll title
^ suggestion was to remove {$lang->poll} only.
<td colspan="4" class="thead" align="center"><strong>{$lang->poll} {$poll['question']}</strong></td> 
change to below code
<td colspan="4" class="thead" align="center"><strong>{$poll['question']}</strong></td> 
I did that
It's impossible that removing only {$lang->poll} caused the background to disappear. Look at showthread_poll's Diff Report to see what else you removed. If you still don't know, post your whole template here.
oh ic now. In the code below thread was misspelled "Thead"

<td colspan="4" class="thead" align="center"><strong>{$poll['question']}</strong></td>


How do I remove it from poll results too? The same way?
^ yes, you can use similar method or you can use Hide Poll Results plugin