init_new_post_custom_fields

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "init_new_post_custom_fields".
... in poll.naml
87
88
89
90
91
92
93
94
95
96
97
<override_macro name="init_new_post_custom_fields">
    <n.overridden/>
    <n.if.visitor.can_create_poll_in.page_node>
        <then>
            <n.poll_max_choices_field.set_value value="1" />
            <n.poll_allow_vote_change_field.set_value value="true" />
            <n.poll_show_results_before_vote_field.set_value value="true" />
            <n.poll_show_results_before_end_field.set_value value="true" />
        </then>
    </n.if.visitor.can_create_poll_in.page_node>
</override_macro>
Overrides default macro
... in reply.naml
540
541
542
<macro name="init_new_post_custom_fields">
    <n.comment.>To be overridden</n.comment.>
</macro>