Custom Input Fields
Quote from trizzuty on June 1, 2018, 8:16 pmIs there a way to create custom fields when posting a new topic? For example, after clicking the “Create New Topic” button, can you have custom fields before/after the Subject field?
Is there a way to create custom fields when posting a new topic? For example, after clicking the “Create New Topic” button, can you have custom fields before/after the Subject field?
Uploaded files:
Quote from Asgaros on June 2, 2018, 9:32 pmHello @trizzuty
It is possible to add custom editor-elements to the lower-area of the editor via the asgarosforum_editor_custom_content_bottom hook. But depending on the logic you want to add you also have to add some custom implementation which is “doing something” with the entered data.
Hello @trizzuty
It is possible to add custom editor-elements to the lower-area of the editor via the asgarosforum_editor_custom_content_bottom hook. But depending on the logic you want to add you also have to add some custom implementation which is “doing something” with the entered data.
Quote from trizzuty on June 3, 2018, 1:54 pmLooking for forum software for work. However, need a few extra fields that will be needed in the New Topic form and then be viewable at the top of the reply page. This info has server information that is important for supporting our product.
Looking for forum software for work. However, need a few extra fields that will be needed in the New Topic form and then be viewable at the top of the reply page. This info has server information that is important for supporting our product.
Quote from Asgaros on June 3, 2018, 7:38 pmYes, the mentioned hook should do the job, and it could be displayed inside the post via the asgarosforum_after_post_message hook as well. But you need a custom-implementation (PHP, HTML, SQL) for sure which adds the input-fields, saves the data and renders them. There is no way to build this with a few simple clicks.
Yes, the mentioned hook should do the job, and it could be displayed inside the post via the asgarosforum_after_post_message hook as well. But you need a custom-implementation (PHP, HTML, SQL) for sure which adds the input-fields, saves the data and renders them. There is no way to build this with a few simple clicks.