XF 1.3 How can i remove "post a pool" section in the post creation interface?

i prefer edit template than add-on, how to do ? please note code. thanks lot :)

Template: thread_create

Surround this code with <xen:comment></xen:comment>:

Code:
    <xen:if is="{$canPostPoll}">
        <h3 class="textHeading">{xen:phrase post_poll}</h3>
        <xen:include template="helper_poll_create" />
    </xen:if>
   
    </xen:hook>
 
Top Bottom