
I would like to keep it very simple. Also in terms of on how to use.Dskod1 wrote:Hey,
Great job on this extension. It is very handy.
Can we get some more options at all? Some I can think of are as follows:
Group effected: Select which group(s) are effected by the template, unaffected groups will not get the posting template.
Effect Sub forums?: Select yes to effect all sub forums of the forum or select no to only effect topics directly in the forum.
That's all I can think of that would seem rather handy. Thank you so much for this extension, great work
Thanks,
Dylan
You can make this extension do that. When installed if you edit the event\listener.php file and find thisPMVanDomelen wrote:Does anyone know of a similar extension (or MOD) that would apply to "replies" instead of just "new topics"?
Code: Select all
if ($mode == 'post'
&& !$submit && !$preview && !$load && !$save && !$refresh
&& empty($post_data['post_text']) && empty($post_data['post_subject'])
&& $this->config_text->get('marttiphpbb_postingtemplate_forum[' . $forum_id . ']'))
Code: Select all
if (($mode == 'post' || $mode == 'reply')
&& !$submit && !$preview && !$load && !$save && !$refresh
&& empty($post_data['post_text']) && $this->config_text->get('marttiphpbb_postingtemplate_forum[' . $forum_id . ']'))
This extension has no column in the forums table. A quick Google search reveals the columnallen62 wrote:i have some issue with this extension . while try to create new forums it will give me error details are here viewtopic.php?f=466&t=2310056
forum_post_tpl
is from the MOD Posting Template.