Feedback From User Voice
See that little feedback horn on the right of the page. I had a requirement to have a way to do user feedback for Windows 8 Apps and it was suggested that I user uservoice.
The whole process took less than 5 minutes. You got to uservoice.com, choose plans and pricing, click start now on the free option and fill out the infromation. At the end they give you some javascript to add to your pages. It looks like the following:
<script type="text/javascript">// <![CDATA[
var uvOptions = {};
(function() {
var uv = document.createElement('script'); uv.type = 'text/javascript'; uv.async = true;
uv.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'widget.uservoice.com/S9UuRnaNQK7ieAhJTX1cg.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(uv, s);
})();
// ]]></script>
After a couple attempts I found that I could add that javascript in the Orchard Google Analytics logic and it would appear on every single page with no effort. Now users can give feedback or request support on every page. The information will be consolidated on the uservoice webpage and an email is fired to me every time someone fills in a request.