The Atlassian Issue Collector is a great tool to make it easy for testers and clients to give feedback on your site. And the out-of-the-box settings give quite a few options. But if it’s just one person testing then it’s a bit annoying for that person to have to keep typing their name and email over and over again.
Did you know you can modify the collector’s behaviour with JavaScript? For the full explanation have a look here: Advanced Use of the JIRA Issue Collector, but to just help that poor tester’s fingers you can add JS just above where you have inserted the collector like this:
<script>
window.ATL_JQ_PAGE_PROPS = $.extend(window.ATL_JQ_PAGE_PROPS, {
fieldValues: {
fullname : ‘Joe Bloggs’,
email : ‘joe@logicspot.com’
}
});
</script>
<script type=“text/javascript” src=”https://jira.logicspot.com/s/d41d8cd98f00b204e9800998ecf8427e/en_US-nf79zz-1988229788/6158/67/1.4.1/_/download/batch/com.atlassian.jira.collector.plugin.jira-issue-collector-plugin:issuecollector/com.atlassian.jira.collector.plugin.jira-issue-collector-plugin:issuecollector.js?collectorId=1bf84efb”></script>