最近搜索


没有最近搜索

Simon Lee's Avatar

Simon Lee

已加入2021年4月15日

·

最后活动2021年11月01日

关注

0

关注者

0

活动总数

5

投票

0

订阅

3

活动概览

的最新活动 Simon Lee

Simon Lee 进行了评论,

社区评论 Feedback - Ticketing system (Support)

Adding my 2 cents here. My use case is pretty simple - mark emails coming from this email address as urgent. This is for emails from alert or monitoring services, or VIPs, etc.

I'm hoping this is easy to implement since you already have string search for subject and comments.

查看评论 · 已于 2020年12月18日 发布 · Simon Lee

0

关注者

2

投票

0

评论


Simon Lee 创建了一个帖子,

帖子 Discussion - Tips and best practices from the community

Hi everyone,

We had a requirement for our customers to send us particular documents when dealing with a certain type of request. The way we tackled this was to add a hint below the attachment field asking our customers for the required documents.

How it's done

This is done by editing the code in the script.js file.

Import jquery

If you're on templating API v2, you'll need to import jquery. Instructions are here.

Edit the script.js file

If you don't have it, you'll need to add the following code to the top of the script.js file.

$(document).ready(function(){

})

Within that function, add the following code, changing "Test hint" to whatever text you want to display.

$('div#upload-dropzone').parent().append('

Test hint

')

This will create a new element at the bottom of the attachment field and give it the ID of attachment_field_hint. The ID comes in handy if you ever want to make changes to the hint based on conditions.

已于 2020年4月22日 发布 · Simon Lee

2

关注者

15

投票

14

评论