MyBB Community Forums

Full Version: Incorrect poll bars on thread page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Check the following screenshot. It is showing incorrect poll bars on thread page.
[attachment=39281]

When I click on "view results" then on this page it is shown correctly.
[attachment=39282]

Version is 1.8
Can you give us a link to a thread with a poll on your board so we can check this.
(2017-09-04, 03:24 PM)broatcast Wrote: [ -> ]Can you give us a link to a thread with a poll on your board so we can check this.

PM sent.
Can you please post your template sets from "showthread_poll_resultbit" and "polls_showresults_resultbit".
[attachment=39284][attachment=39283]

(2017-09-04, 03:36 PM)broatcast Wrote: [ -> ]Can you please post your template sets from "showthread_poll_resultbit" and "polls_showresults_resultbit".

Screenshots posted above.
replace your showthread_post_resultbit with this one:
<li class="{$optionbg}">
  <div class="w3-row w3-small">
    <div class="w3-col l2 w3-right-align scaleimages">{$option}{$votestar}&nbsp;</div>
    <div class="w3-col l6"><div class="pollbar" style="width:{$imagewidth}%" title="{$percent}%"><span class="percent">{$percent}%</span></div></div>
    <div class="w3-col l2 w3-center">{$votes}</div>
    <div class="w3-col l2 w3-center">{$percent}%</div>
  </div>
</li>
(2017-09-04, 04:38 PM)broatcast Wrote: [ -> ]replace your showthread_post_resultbit with this one:
<li class="{$optionbg}">
  <div class="w3-row w3-small">
    <div class="w3-col l2 w3-right-align scaleimages">{$option}{$votestar}&nbsp;</div>
    <div class="w3-col l6"><div class="pollbar" style="width:{$imagewidth}%" title="{$percent}%"><span class="percent">{$percent}%</span></div></div>
    <div class="w3-col l2 w3-center">{$votes}</div>
    <div class="w3-col l2 w3-center">{$percent}%</div>
  </div>
</li>

Thank you. This fixed the problem.