<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://support.unioncloud.org/UnionCloud/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Orry+Verducci</id>
		<title>UnionCloud Support - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://support.unioncloud.org/UnionCloud/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Orry+Verducci"/>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php/Special:Contributions/Orry_Verducci"/>
		<updated>2026-05-16T23:04:55Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.28.0</generator>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Auto_load_content_on_scroll&amp;diff=1668</id>
		<title>Auto load content on scroll</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Auto_load_content_on_scroll&amp;diff=1668"/>
				<updated>2016-12-16T14:46:23Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Add scroll function which stops platform page scroll when a user tries to scroll, which blocks scrolling on the page.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are many pages on the platform that limit the content shown, and have a 'load more' button at the bottom which loads the next page when clicked.&lt;br /&gt;
&lt;br /&gt;
The following code snippet enables automatic loading of the content as visitors scroll down the page, similar to how Facebook and Twitter do, improving the user experience as users can just scroll down without having to keep clicking 'load more'.&lt;br /&gt;
&lt;br /&gt;
To snippet should be copied into Global Javascript.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
function EnableAutoLoadMore(buttonElement, contentElement) {&lt;br /&gt;
    $(window).bind('scroll', function() {&lt;br /&gt;
        if (typeof $(buttonElement).first().attr('data-loadmore') === typeof undefined || $(buttonElement).first().attr('data-loadmore') == false) {&lt;br /&gt;
             $(buttonElement).first().attr('data-loadmore', 0);&lt;br /&gt;
        }&lt;br /&gt;
        if ($(buttonElement + ':visible').length &amp;gt; 0) {&lt;br /&gt;
        	if (($(window).height() + $(document).scrollTop()) &amp;gt; ($(buttonElement).first().offset().top - 80) &amp;amp;&amp;amp; $(contentElement).first().children().length &amp;gt; $(buttonElement).first().attr('data-loadmore')) {&lt;br /&gt;
                $(buttonElement).first().attr('data-loadmore', $(contentElement).first().children().length);&lt;br /&gt;
                $(buttonElement).click();&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    });&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
$(function() {&lt;br /&gt;
    if (window.location.pathname.substring(0, 7) == '/events' &amp;amp;&amp;amp; window.location.pathname.length &amp;lt;= 8) {&lt;br /&gt;
        EnableAutoLoadMore('#load-more-events', '#uc-event-right-panel-listing');&lt;br /&gt;
    } else if (window.location.pathname.substring(0, 7) == '/groups') {&lt;br /&gt;
        EnableAutoLoadMore('#uc-more-group-search', '.category-box-wrapper');&lt;br /&gt;
        $('.club-navigation ul li').click(function() {&lt;br /&gt;
            $('#uc-more-group-search').first().attr('data-loadmore', 0);&lt;br /&gt;
        });&lt;br /&gt;
        $('.group-types-wrapper ul li').click(function() {&lt;br /&gt;
            $('#uc-more-group-search').first().attr('data-loadmore', 0);&lt;br /&gt;
        });&lt;br /&gt;
    } else if (window.location.pathname.substring(0, 9) == '/articles' &amp;amp;&amp;amp; window.location.pathname.length &amp;lt;= 10) {&lt;br /&gt;
        EnableAutoLoadMore('#load_more_article', '.uc-articles-listing');&lt;br /&gt;
    } else if (window.location.pathname.substring(0, 16) == '/thestudentvoice' &amp;amp;&amp;amp; window.location.pathname.length &amp;lt;= 17) {&lt;br /&gt;
        EnableAutoLoadMore('#load_more_sv', '.uc-sv-left-panel-wrapper');&lt;br /&gt;
        $('#uc-sv-navigation li a').click(function() {&lt;br /&gt;
            $('#load_more_sv').first().attr('data-loadmore', 0);&lt;br /&gt;
        });&lt;br /&gt;
    }&lt;br /&gt;
});&lt;br /&gt;
&lt;br /&gt;
$('html, body').bind('scroll mousedown DOMMouseScroll mousewheel keyup touchstart', function(){&lt;br /&gt;
    $('html, body').stop();&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Main_Page&amp;diff=1667</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Main_Page&amp;diff=1667"/>
				<updated>2016-12-16T10:44:37Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Add simple image slideshow code snippet&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:NUS_Connect.png|thumb|200px|Screenshot of the NUS Connect Website, one of the heaviest users of the UnionCloud Platform.]]&lt;br /&gt;
&lt;br /&gt;
This Community Wiki, is our venture in hoping that we can provide to you the best, most up to to date, comprehensive, and yet easy to understand support possible. Though our team will be working hard to ensure we cover, and keep on top of this, providing help, support, and guidance on all areas of Union Cloud, there are only so many hours in the day.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
As with all 'Wiki' based websites, we're going to be asking for a little bit of help from you guys, the community. If you're looking through here, and there is something you've noticed is missing, feel free to add it, or let us know that you'd like some help on a particular topic adding. With your help, we can make this a hugely successful support mechanism to allow you to create the best Union Cloud platforms possible for your own institutions!&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Ash&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Digital Support Executive&lt;br /&gt;
== About ==&lt;br /&gt;
First time here? All you need to do is quickly register, as soon as you have, you will be able to view more content, and even make edits!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==FAQ's / Common Questions ==&lt;br /&gt;
*[[User Groups &amp;amp; Permissions|How do I give people permissions on Union Cloud?]]&lt;br /&gt;
*[[How to set up an election|How do I set up an election?]]&lt;br /&gt;
*Creating an Event&lt;br /&gt;
*Uploading a News Story&lt;br /&gt;
*[[Other Support|What other support can I get for UnionCloud?]]&lt;br /&gt;
&lt;br /&gt;
== What would you like help with? ==&lt;br /&gt;
These are the major areas you will come across using the ''Back End'' of Union Cloud.&lt;br /&gt;
&lt;br /&gt;
=== Admin === &lt;br /&gt;
[[File:Admin_Menu.png|frame|200px|Admin Menu from Union Cloud Dashboard.]]&lt;br /&gt;
&lt;br /&gt;
The Admin section of the Union Cloud Dashboard contains all of the tools you as the Administrator are likely to need to make sure that your site functions, and functions correctly. Everything from setting up the specific ID's students are allowed to register with, Single Sign On, Nominal Codes for your finance teams, Data Uploads, and more.&lt;br /&gt;
&lt;br /&gt;
It is the main suite of tools you will use to manage your site, [[Setup]], is mainly used, as it would suggest, in the setup of your website, the crucial settings, and, custom email responses, often this is made up of the settings that doesn't require changing too often. The other group of tools, you will use more frequently, though which tools are available to you will depend on which Union Cloud package you are on.&lt;br /&gt;
&lt;br /&gt;
The Sections of the Admin Menu are;&lt;br /&gt;
*[[Setup]]&lt;br /&gt;
*[[User Groups &amp;amp; Permissions|User Groups]]&lt;br /&gt;
*[[Remote Sales]]&lt;br /&gt;
*[[User Account Details]]&lt;br /&gt;
*[[Manage Refunds]]&lt;br /&gt;
*[[Manage Course Rep]]&lt;br /&gt;
*[[Upload Files]]&lt;br /&gt;
*[[Android App]]&lt;br /&gt;
&lt;br /&gt;
=== Website === &lt;br /&gt;
[[File:Website Menu.png|thumb|Website Menu from Union Cloud Dashboard.]]&lt;br /&gt;
MarComs is a Portmanteau of the words ''Marketing'', and ''Communications'', and that is largely what this section covers, it includes all of the areas to edit content on your site, add '[[Articles Manager|News Articles]]', send out Emails to your members ([[Campaign Manager|Campaigns]]), and managing all of your [[Images Library|Uploaded Images]] &amp;amp; [[Documents Manager|Documents]].&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Some areas, like Developers Toolkit, are slightly more advanced still and allow users with the know how to alter the structure of their site, the navigation, the order / location of pages and more, it also gives the ability to add widgets, sub-sites, and with one of the extra packages, customise the CSS and Javascript within the site, allowing a greater level of bespoking.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the MARCOMS Menu are;&lt;br /&gt;
*[[Web Site Manager]]&lt;br /&gt;
*[[Articles Manager]]&lt;br /&gt;
*[[Documents Manager]]&lt;br /&gt;
*[[Images Library]]&lt;br /&gt;
*[[Developers Toolkit]]&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
[[File:Campaigns Menu.PNG|thumb|Campaigns Menu from Union Cloud Dashboard.]]&lt;br /&gt;
Previously from within the MARCOMS Section, these have been separated out now for Clarity. Campaigns is the section you visit if you wish to send out Email 'Campaigns' from within your UnionCloud site to your membership, it's broken down into four sections.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Campaign Manager]]&lt;br /&gt;
:*Union Pending Campaigns&lt;br /&gt;
:*Union Past Campaigns&lt;br /&gt;
:*NUS Pending Campaigns&lt;br /&gt;
:*NUS Past Campaigns&lt;br /&gt;
&lt;br /&gt;
=== Groups ===&lt;br /&gt;
[[File:Groups_Menu.png|frame|200px|Groups Menu from Union Cloud Dashboard.]]&lt;br /&gt;
Groups is the catch all term we use to describe any student group we want to give some access and independence to on our Website, Typically, these are Sports Clubs &amp;amp; Societies, however some also use it for Course reps, mailing lists, interest groups and one off projects&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
If the people in charge of said group have been assigned permissions, then they can also manage themselves, their own ''minisite'', their own memberships / prices, events, emails and more.&lt;br /&gt;
&lt;br /&gt;
The Sections of the Groups Menu are;&lt;br /&gt;
*[[Manage Groups]]&lt;br /&gt;
*[[Manage Group Promotions|Manage Promotions]]&lt;br /&gt;
*[[Manage Awards]]&lt;br /&gt;
&lt;br /&gt;
=== Events ===&lt;br /&gt;
[[File:Events_Menu.png|frame|200px|Events Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The events section is a useful tool used for eTicketing, Door Entry (Scanning / Redeeming tickets at an event), Obtaining information in advance from all of your guests, notifying them of updates, and giving the abilty to promote events, to boost attention or sales.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the Events Menu are;&lt;br /&gt;
*[[Manage Events]]&lt;br /&gt;
*[[Redeem Tickets]]&lt;br /&gt;
*[[Manage Event Promotions|Manage Promotions]]&lt;br /&gt;
*[[Manage Ticket Orders]]&lt;br /&gt;
&lt;br /&gt;
=== Eshop ===&lt;br /&gt;
[[File:EShop Menu.png|thumb|eShop Menu from Union Cloud Dashboard.]]&lt;br /&gt;
There are currently three options available relating to eShops withing Union Cloud sites; None, Managed, or Union.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
'''None''' is straight forward, a non commercial union who do not wish to sell products.&amp;lt;br/&amp;gt;&lt;br /&gt;
'''Managed''' is an eShop managed by the Union Cloud team, and stocked by [http://www.eponashop.com/ Epona], the Fairtrade clothing supplier that is a subsidiary of NUS, as the shop. &amp;lt;br/&amp;gt;&lt;br /&gt;
'''Union''' is the most common option, and refers to an eShop managed by a member of staff at your Union, and requires you to upload and maintain your stock, and stock levels, reviewing and dispatching orders.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
The financial breakdown for Managed and Union is slightly different, you can get these details by contacting you Membership Engagement Executive.&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the Eshop Menu are;&lt;br /&gt;
*[[Manage Products|Products]]&lt;br /&gt;
*[[Manage Product Categories|Categories]]&lt;br /&gt;
*[[Manage Orders|Orders]]&lt;br /&gt;
*[[Manage Colours|Colours]]&lt;br /&gt;
*[[Manage Eshop Promotions|Product Promotions]]&lt;br /&gt;
*[[Manage Category Discount|Category Discount]]&lt;br /&gt;
*[[Shipping Charges Upload]]&lt;br /&gt;
*[[Stock Report]]&lt;br /&gt;
&lt;br /&gt;
=== Democracy ===&lt;br /&gt;
[[File:Democracy Menu.png|thumb|eShop Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Democracy Menu are;&lt;br /&gt;
*[[Elections]]&lt;br /&gt;
:*[[Elections#Manage Categories|Manage Categories]]&lt;br /&gt;
:*[[Elections#Manage Positions|Manage Positions]]&lt;br /&gt;
:*[[Elections#Manage Elections|Manage Elections]]&lt;br /&gt;
:*[[Elections Dashboard]] '''Will be added with R26'''&lt;br /&gt;
*[[Referendums]]&lt;br /&gt;
*[[Student Voice]]&lt;br /&gt;
:*[[Student Voice#Setup|Setup]]&lt;br /&gt;
:*[[Student Voice#Manage Ideas|Manage Ideas]]&lt;br /&gt;
:*[[Student Voice#Manage Comments|Manage Comments]]&lt;br /&gt;
&lt;br /&gt;
=== Volunteering ===&lt;br /&gt;
[[File:Volunteering Menu.png|thumb|Volunteering Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Volunteering Menu are;&lt;br /&gt;
*[[Volunteering Setup]]&lt;br /&gt;
*[[Manage Volunteers]]&lt;br /&gt;
*[[Manage organisations/projects]]&lt;br /&gt;
*[[Manage opportunities]]&lt;br /&gt;
*[[Dashboard]]&lt;br /&gt;
*[[Manage reports]]&lt;br /&gt;
*[[Upload organisation/project]]&lt;br /&gt;
*[[Volunteer awards]]&lt;br /&gt;
&lt;br /&gt;
=== Reports ===&lt;br /&gt;
[[File:Reports Menu.png|thumb|Reports Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Reports Menu are;&lt;br /&gt;
*[[NUS Analytics]]&lt;br /&gt;
:*[[NUS Analytics#Dynamic KPI's|Dynamic KPIs]]&lt;br /&gt;
:*[[NUS Analytics#Charts|Charts]]&lt;br /&gt;
:*[[NUS Analytics#Student Activity Report|Student Activity Report]]&lt;br /&gt;
*[[Event Booking Details]]&lt;br /&gt;
*[[Finance Report]]&lt;br /&gt;
*[[Group Committee Report]]&lt;br /&gt;
*[[Membership Details]]&lt;br /&gt;
&lt;br /&gt;
== [[Version History]] ==&lt;br /&gt;
&lt;br /&gt;
Links to Version Updates / Release Notes, this stub stores the most recent 3 sprints, and the most recent three major releases, however if you are looking for full details you can find all release / sprint data on the [[Version History]] page.&lt;br /&gt;
&lt;br /&gt;
=== Major Updates ===&lt;br /&gt;
*[[Release 24]]&lt;br /&gt;
*[[Release 25]] - 25th June 2016&lt;br /&gt;
*[[Release 26]] - 26th November 2016 - estimated date&lt;br /&gt;
&lt;br /&gt;
=== Sprint Updates ===&lt;br /&gt;
* [[R25 Patch: 07th November 2016]]&lt;br /&gt;
* [[R26 Patch: 30th November 2016]]&lt;br /&gt;
* [[R25 Patch: 05th December 2016]]&lt;br /&gt;
&lt;br /&gt;
== Misc Info ==&lt;br /&gt;
&lt;br /&gt;
Here we'll list links or info about any documentation that isn't necessarily directly Union Cloud, but may still relate to your usage of the platform.&lt;br /&gt;
&lt;br /&gt;
=== Finance ===&lt;br /&gt;
*[[Transaction Fees]]&lt;br /&gt;
&lt;br /&gt;
===Code Snippets===&lt;br /&gt;
*[[Modify Site Background Image or Colour]]&lt;br /&gt;
*[[Change Officer Stripe Speed]]&lt;br /&gt;
*[[Hide Events on index]]&lt;br /&gt;
*[[Show Count on All Usergroups]]&lt;br /&gt;
*[[Simple image slideshow]]&lt;br /&gt;
*[[Disable candidates already selected in an election]]&lt;br /&gt;
*[[Auto load content on scroll]]&lt;br /&gt;
*[[Rename Student Voice Module]]&lt;br /&gt;
*[[Auto select single group membership type]]&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Simple_image_slideshow&amp;diff=1666</id>
		<title>Simple image slideshow</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Simple_image_slideshow&amp;diff=1666"/>
				<updated>2016-12-16T10:44:12Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Page creation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following code snippets allow you to add simple image slideshow functionality to your page or site, which will fade nicely between images after a set duration. The duration defaults to 5 seconds, but can be adjusted per slideshow if needed.&lt;br /&gt;
&lt;br /&gt;
The CSS and Javascript snippets can be added to either a single page's CSS and Javascript, or can be added to your Global CSS and Global Javascript to enable the functionality site wide.&lt;br /&gt;
&lt;br /&gt;
'''Please Note:''' The slideshow will be the size of the first image in the sequence. Ideally all the images in the sequence should be the same size.&lt;br /&gt;
&lt;br /&gt;
== CSS ==&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
.image-slideshow  {&lt;br /&gt;
    position: relative;&lt;br /&gt;
    overflow: hidden;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.image-slideshow img {&lt;br /&gt;
    top: 0;&lt;br /&gt;
    left: 0;&lt;br /&gt;
    position: absolute;&lt;br /&gt;
    z-index: 1;&lt;br /&gt;
    transition: opacity 1s;&lt;br /&gt;
    opacity: 0;&lt;br /&gt;
    width: 100% !important;&lt;br /&gt;
    height: auto !important;&lt;br /&gt;
    vertical-align: top;&lt;br /&gt;
    will-change: opacity;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.image-slideshow img:first-child {&lt;br /&gt;
    position: relative;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.image-slideshow img.active-image {&lt;br /&gt;
    z-index: 3;&lt;br /&gt;
    opacity: 1;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.image-slideshow img.previous-image {&lt;br /&gt;
    z-index: 2;&lt;br /&gt;
    opacity: 1;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Javascript ==&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$(function() {&lt;br /&gt;
    $('.image-slideshow').each(function(index) {&lt;br /&gt;
        var slideshowElement = this;&lt;br /&gt;
        var duration = $(slideshowElement).attr('data-speed');&lt;br /&gt;
        if (typeof duration == typeof undefined || duration == false) {&lt;br /&gt;
            duration = 5;&lt;br /&gt;
        } else {&lt;br /&gt;
            duration = parseInt(duration);&lt;br /&gt;
        }&lt;br /&gt;
        $(slideshowElement).children('img:first').addClass('active-image');&lt;br /&gt;
        setInterval(function() { CycleImage(slideshowElement); }, duration * 1000);&lt;br /&gt;
    });&lt;br /&gt;
});&lt;br /&gt;
&lt;br /&gt;
function CycleImage(slideshowElement){&lt;br /&gt;
    var active = $(slideshowElement).children('.active-image');&lt;br /&gt;
    var next = (active.next().length &amp;gt; 0) ? active.next() : $(slideshowElement).children('img:first');&lt;br /&gt;
    active.addClass('previous-image');&lt;br /&gt;
    active.removeClass('active-image');&lt;br /&gt;
    next.addClass('active-image');&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
$(&amp;quot;.image-slideshow&amp;quot;).bind(&amp;quot;transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd&amp;quot;, function(){&lt;br /&gt;
    $(this).children('.previous-image').removeClass('previous-image');&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
To use the slideshow on a page, change the editor (CKEditor) to source view, and insert the follow snippet where you want the slideshow to appear:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;image-slideshow&amp;quot;&amp;gt;PUT IMAGES HERE&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then change back to normal view, and replace the &amp;quot;PUT IMAGES HERE&amp;quot; text with the images you want to use, by inserting images as normal.&lt;br /&gt;
&lt;br /&gt;
If you want to change the duration between each image change from 5 seconds to something else, add a &amp;quot;data-speed&amp;quot; attribute to the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tag set to the number of seconds you want the duration to be. For example for a 10 second duration, you tag would look like this:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;image-slideshow&amp;quot; data-speed=&amp;quot;10&amp;quot;&amp;gt;PUT IMAGES HERE&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Main_Page&amp;diff=1665</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Main_Page&amp;diff=1665"/>
				<updated>2016-12-16T09:41:36Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Add Auto select single group membership type code snippet&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:NUS_Connect.png|thumb|200px|Screenshot of the NUS Connect Website, one of the heaviest users of the UnionCloud Platform.]]&lt;br /&gt;
&lt;br /&gt;
This Community Wiki, is our venture in hoping that we can provide to you the best, most up to to date, comprehensive, and yet easy to understand support possible. Though our team will be working hard to ensure we cover, and keep on top of this, providing help, support, and guidance on all areas of Union Cloud, there are only so many hours in the day.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
As with all 'Wiki' based websites, we're going to be asking for a little bit of help from you guys, the community. If you're looking through here, and there is something you've noticed is missing, feel free to add it, or let us know that you'd like some help on a particular topic adding. With your help, we can make this a hugely successful support mechanism to allow you to create the best Union Cloud platforms possible for your own institutions!&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Ash&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Digital Support Executive&lt;br /&gt;
== About ==&lt;br /&gt;
First time here? All you need to do is quickly register, as soon as you have, you will be able to view more content, and even make edits!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==FAQ's / Common Questions ==&lt;br /&gt;
*[[User Groups &amp;amp; Permissions|How do I give people permissions on Union Cloud?]]&lt;br /&gt;
*[[How to set up an election|How do I set up an election?]]&lt;br /&gt;
*Creating an Event&lt;br /&gt;
*Uploading a News Story&lt;br /&gt;
*[[Other Support|What other support can I get for UnionCloud?]]&lt;br /&gt;
&lt;br /&gt;
== What would you like help with? ==&lt;br /&gt;
These are the major areas you will come across using the ''Back End'' of Union Cloud.&lt;br /&gt;
&lt;br /&gt;
=== Admin === &lt;br /&gt;
[[File:Admin_Menu.png|frame|200px|Admin Menu from Union Cloud Dashboard.]]&lt;br /&gt;
&lt;br /&gt;
The Admin section of the Union Cloud Dashboard contains all of the tools you as the Administrator are likely to need to make sure that your site functions, and functions correctly. Everything from setting up the specific ID's students are allowed to register with, Single Sign On, Nominal Codes for your finance teams, Data Uploads, and more.&lt;br /&gt;
&lt;br /&gt;
It is the main suite of tools you will use to manage your site, [[Setup]], is mainly used, as it would suggest, in the setup of your website, the crucial settings, and, custom email responses, often this is made up of the settings that doesn't require changing too often. The other group of tools, you will use more frequently, though which tools are available to you will depend on which Union Cloud package you are on.&lt;br /&gt;
&lt;br /&gt;
The Sections of the Admin Menu are;&lt;br /&gt;
*[[Setup]]&lt;br /&gt;
*[[User Groups &amp;amp; Permissions|User Groups]]&lt;br /&gt;
*[[Remote Sales]]&lt;br /&gt;
*[[User Account Details]]&lt;br /&gt;
*[[Manage Refunds]]&lt;br /&gt;
*[[Manage Course Rep]]&lt;br /&gt;
*[[Upload Files]]&lt;br /&gt;
*[[Android App]]&lt;br /&gt;
&lt;br /&gt;
=== Website === &lt;br /&gt;
[[File:Website Menu.png|thumb|Website Menu from Union Cloud Dashboard.]]&lt;br /&gt;
MarComs is a Portmanteau of the words ''Marketing'', and ''Communications'', and that is largely what this section covers, it includes all of the areas to edit content on your site, add '[[Articles Manager|News Articles]]', send out Emails to your members ([[Campaign Manager|Campaigns]]), and managing all of your [[Images Library|Uploaded Images]] &amp;amp; [[Documents Manager|Documents]].&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Some areas, like Developers Toolkit, are slightly more advanced still and allow users with the know how to alter the structure of their site, the navigation, the order / location of pages and more, it also gives the ability to add widgets, sub-sites, and with one of the extra packages, customise the CSS and Javascript within the site, allowing a greater level of bespoking.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the MARCOMS Menu are;&lt;br /&gt;
*[[Web Site Manager]]&lt;br /&gt;
*[[Articles Manager]]&lt;br /&gt;
*[[Documents Manager]]&lt;br /&gt;
*[[Images Library]]&lt;br /&gt;
*[[Developers Toolkit]]&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
[[File:Campaigns Menu.PNG|thumb|Campaigns Menu from Union Cloud Dashboard.]]&lt;br /&gt;
Previously from within the MARCOMS Section, these have been separated out now for Clarity. Campaigns is the section you visit if you wish to send out Email 'Campaigns' from within your UnionCloud site to your membership, it's broken down into four sections.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Campaign Manager]]&lt;br /&gt;
:*Union Pending Campaigns&lt;br /&gt;
:*Union Past Campaigns&lt;br /&gt;
:*NUS Pending Campaigns&lt;br /&gt;
:*NUS Past Campaigns&lt;br /&gt;
&lt;br /&gt;
=== Groups ===&lt;br /&gt;
[[File:Groups_Menu.png|frame|200px|Groups Menu from Union Cloud Dashboard.]]&lt;br /&gt;
Groups is the catch all term we use to describe any student group we want to give some access and independence to on our Website, Typically, these are Sports Clubs &amp;amp; Societies, however some also use it for Course reps, mailing lists, interest groups and one off projects&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
If the people in charge of said group have been assigned permissions, then they can also manage themselves, their own ''minisite'', their own memberships / prices, events, emails and more.&lt;br /&gt;
&lt;br /&gt;
The Sections of the Groups Menu are;&lt;br /&gt;
*[[Manage Groups]]&lt;br /&gt;
*[[Manage Group Promotions|Manage Promotions]]&lt;br /&gt;
*[[Manage Awards]]&lt;br /&gt;
&lt;br /&gt;
=== Events ===&lt;br /&gt;
[[File:Events_Menu.png|frame|200px|Events Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The events section is a useful tool used for eTicketing, Door Entry (Scanning / Redeeming tickets at an event), Obtaining information in advance from all of your guests, notifying them of updates, and giving the abilty to promote events, to boost attention or sales.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the Events Menu are;&lt;br /&gt;
*[[Manage Events]]&lt;br /&gt;
*[[Redeem Tickets]]&lt;br /&gt;
*[[Manage Event Promotions|Manage Promotions]]&lt;br /&gt;
*[[Manage Ticket Orders]]&lt;br /&gt;
&lt;br /&gt;
=== Eshop ===&lt;br /&gt;
[[File:EShop Menu.png|thumb|eShop Menu from Union Cloud Dashboard.]]&lt;br /&gt;
There are currently three options available relating to eShops withing Union Cloud sites; None, Managed, or Union.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
'''None''' is straight forward, a non commercial union who do not wish to sell products.&amp;lt;br/&amp;gt;&lt;br /&gt;
'''Managed''' is an eShop managed by the Union Cloud team, and stocked by [http://www.eponashop.com/ Epona], the Fairtrade clothing supplier that is a subsidiary of NUS, as the shop. &amp;lt;br/&amp;gt;&lt;br /&gt;
'''Union''' is the most common option, and refers to an eShop managed by a member of staff at your Union, and requires you to upload and maintain your stock, and stock levels, reviewing and dispatching orders.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
The financial breakdown for Managed and Union is slightly different, you can get these details by contacting you Membership Engagement Executive.&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the Eshop Menu are;&lt;br /&gt;
*[[Manage Products|Products]]&lt;br /&gt;
*[[Manage Product Categories|Categories]]&lt;br /&gt;
*[[Manage Orders|Orders]]&lt;br /&gt;
*[[Manage Colours|Colours]]&lt;br /&gt;
*[[Manage Eshop Promotions|Product Promotions]]&lt;br /&gt;
*[[Manage Category Discount|Category Discount]]&lt;br /&gt;
*[[Shipping Charges Upload]]&lt;br /&gt;
*[[Stock Report]]&lt;br /&gt;
&lt;br /&gt;
=== Democracy ===&lt;br /&gt;
[[File:Democracy Menu.png|thumb|eShop Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Democracy Menu are;&lt;br /&gt;
*[[Elections]]&lt;br /&gt;
:*[[Elections#Manage Categories|Manage Categories]]&lt;br /&gt;
:*[[Elections#Manage Positions|Manage Positions]]&lt;br /&gt;
:*[[Elections#Manage Elections|Manage Elections]]&lt;br /&gt;
:*[[Elections Dashboard]] '''Will be added with R26'''&lt;br /&gt;
*[[Referendums]]&lt;br /&gt;
*[[Student Voice]]&lt;br /&gt;
:*[[Student Voice#Setup|Setup]]&lt;br /&gt;
:*[[Student Voice#Manage Ideas|Manage Ideas]]&lt;br /&gt;
:*[[Student Voice#Manage Comments|Manage Comments]]&lt;br /&gt;
&lt;br /&gt;
=== Volunteering ===&lt;br /&gt;
[[File:Volunteering Menu.png|thumb|Volunteering Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Volunteering Menu are;&lt;br /&gt;
*[[Volunteering Setup]]&lt;br /&gt;
*[[Manage Volunteers]]&lt;br /&gt;
*[[Manage organisations/projects]]&lt;br /&gt;
*[[Manage opportunities]]&lt;br /&gt;
*[[Dashboard]]&lt;br /&gt;
*[[Manage reports]]&lt;br /&gt;
*[[Upload organisation/project]]&lt;br /&gt;
*[[Volunteer awards]]&lt;br /&gt;
&lt;br /&gt;
=== Reports ===&lt;br /&gt;
[[File:Reports Menu.png|thumb|Reports Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Reports Menu are;&lt;br /&gt;
*[[NUS Analytics]]&lt;br /&gt;
:*[[NUS Analytics#Dynamic KPI's|Dynamic KPIs]]&lt;br /&gt;
:*[[NUS Analytics#Charts|Charts]]&lt;br /&gt;
:*[[NUS Analytics#Student Activity Report|Student Activity Report]]&lt;br /&gt;
*[[Event Booking Details]]&lt;br /&gt;
*[[Finance Report]]&lt;br /&gt;
*[[Group Committee Report]]&lt;br /&gt;
*[[Membership Details]]&lt;br /&gt;
&lt;br /&gt;
== [[Version History]] ==&lt;br /&gt;
&lt;br /&gt;
Links to Version Updates / Release Notes, this stub stores the most recent 3 sprints, and the most recent three major releases, however if you are looking for full details you can find all release / sprint data on the [[Version History]] page.&lt;br /&gt;
&lt;br /&gt;
=== Major Updates ===&lt;br /&gt;
*[[Release 24]]&lt;br /&gt;
*[[Release 25]] - 25th June 2016&lt;br /&gt;
*[[Release 26]] - 26th November 2016 - estimated date&lt;br /&gt;
&lt;br /&gt;
=== Sprint Updates ===&lt;br /&gt;
* [[R25 Patch: 07th November 2016]]&lt;br /&gt;
* [[R26 Patch: 30th November 2016]]&lt;br /&gt;
* [[R25 Patch: 05th December 2016]]&lt;br /&gt;
&lt;br /&gt;
== Misc Info ==&lt;br /&gt;
&lt;br /&gt;
Here we'll list links or info about any documentation that isn't necessarily directly Union Cloud, but may still relate to your usage of the platform.&lt;br /&gt;
&lt;br /&gt;
=== Finance ===&lt;br /&gt;
*[[Transaction Fees]]&lt;br /&gt;
&lt;br /&gt;
===Code Snippets===&lt;br /&gt;
*[[Modify Site Background Image or Colour]]&lt;br /&gt;
*[[Change Officer Stripe Speed]]&lt;br /&gt;
*[[Hide Events on index]]&lt;br /&gt;
*[[Show Count on All Usergroups]]&lt;br /&gt;
*[[Disable candidates already selected in an election]]&lt;br /&gt;
*[[Auto load content on scroll]]&lt;br /&gt;
*[[Rename Student Voice Module]]&lt;br /&gt;
*[[Auto select single group membership type]]&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Auto_select_single_group_membership_type&amp;diff=1663</id>
		<title>Auto select single group membership type</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Auto_select_single_group_membership_type&amp;diff=1663"/>
				<updated>2016-12-16T09:41:15Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Orry Verducci moved page Auto select only membership to Auto select single group membership type: Clarify page title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;When a student joins a group, they have to select a membership type for the group. When there is only a single membership type for the group, the platform still requires the student to select it.&lt;br /&gt;
&lt;br /&gt;
The following code snippet, which should be put in Global Javascript, will automatically select the membership type if there is only one membership type listed on the page.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$(function() {&lt;br /&gt;
    if (window.location.pathname.substring(window.location.pathname.length - 5) == '/join' || window.location.pathname.substring(window.location.pathname.length - 5) == 'join/') {&lt;br /&gt;
        if ($('.memberShipType').length == 1) {&lt;br /&gt;
        	$('.memberShipType').click();&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Auto_select_only_membership&amp;diff=1664</id>
		<title>Auto select only membership</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Auto_select_only_membership&amp;diff=1664"/>
				<updated>2016-12-16T09:41:15Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Orry Verducci moved page Auto select only membership to Auto select single group membership type: Clarify page title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Auto select single group membership type]]&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Auto_select_single_group_membership_type&amp;diff=1662</id>
		<title>Auto select single group membership type</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Auto_select_single_group_membership_type&amp;diff=1662"/>
				<updated>2016-12-16T09:40:24Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Page creation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;When a student joins a group, they have to select a membership type for the group. When there is only a single membership type for the group, the platform still requires the student to select it.&lt;br /&gt;
&lt;br /&gt;
The following code snippet, which should be put in Global Javascript, will automatically select the membership type if there is only one membership type listed on the page.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$(function() {&lt;br /&gt;
    if (window.location.pathname.substring(window.location.pathname.length - 5) == '/join' || window.location.pathname.substring(window.location.pathname.length - 5) == 'join/') {&lt;br /&gt;
        if ($('.memberShipType').length == 1) {&lt;br /&gt;
        	$('.memberShipType').click();&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Main_Page&amp;diff=1661</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Main_Page&amp;diff=1661"/>
				<updated>2016-12-15T16:45:23Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Add Rename Student Voice Module code snippet&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:NUS_Connect.png|thumb|200px|Screenshot of the NUS Connect Website, one of the heaviest users of the UnionCloud Platform.]]&lt;br /&gt;
&lt;br /&gt;
This Community Wiki, is our venture in hoping that we can provide to you the best, most up to to date, comprehensive, and yet easy to understand support possible. Though our team will be working hard to ensure we cover, and keep on top of this, providing help, support, and guidance on all areas of Union Cloud, there are only so many hours in the day.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
As with all 'Wiki' based websites, we're going to be asking for a little bit of help from you guys, the community. If you're looking through here, and there is something you've noticed is missing, feel free to add it, or let us know that you'd like some help on a particular topic adding. With your help, we can make this a hugely successful support mechanism to allow you to create the best Union Cloud platforms possible for your own institutions!&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Ash&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Digital Support Executive&lt;br /&gt;
== About ==&lt;br /&gt;
First time here? All you need to do is quickly register, as soon as you have, you will be able to view more content, and even make edits!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==FAQ's / Common Questions ==&lt;br /&gt;
*[[User Groups &amp;amp; Permissions|How do I give people permissions on Union Cloud?]]&lt;br /&gt;
*[[How to set up an election|How do I set up an election?]]&lt;br /&gt;
*Creating an Event&lt;br /&gt;
*Uploading a News Story&lt;br /&gt;
*[[Other Support|What other support can I get for UnionCloud?]]&lt;br /&gt;
&lt;br /&gt;
== What would you like help with? ==&lt;br /&gt;
These are the major areas you will come across using the ''Back End'' of Union Cloud.&lt;br /&gt;
&lt;br /&gt;
=== Admin === &lt;br /&gt;
[[File:Admin_Menu.png|frame|200px|Admin Menu from Union Cloud Dashboard.]]&lt;br /&gt;
&lt;br /&gt;
The Admin section of the Union Cloud Dashboard contains all of the tools you as the Administrator are likely to need to make sure that your site functions, and functions correctly. Everything from setting up the specific ID's students are allowed to register with, Single Sign On, Nominal Codes for your finance teams, Data Uploads, and more.&lt;br /&gt;
&lt;br /&gt;
It is the main suite of tools you will use to manage your site, [[Setup]], is mainly used, as it would suggest, in the setup of your website, the crucial settings, and, custom email responses, often this is made up of the settings that doesn't require changing too often. The other group of tools, you will use more frequently, though which tools are available to you will depend on which Union Cloud package you are on.&lt;br /&gt;
&lt;br /&gt;
The Sections of the Admin Menu are;&lt;br /&gt;
*[[Setup]]&lt;br /&gt;
*[[User Groups &amp;amp; Permissions|User Groups]]&lt;br /&gt;
*[[Remote Sales]]&lt;br /&gt;
*[[User Account Details]]&lt;br /&gt;
*[[Manage Refunds]]&lt;br /&gt;
*[[Manage Course Rep]]&lt;br /&gt;
*[[Upload Files]]&lt;br /&gt;
*[[Android App]]&lt;br /&gt;
&lt;br /&gt;
=== Website === &lt;br /&gt;
[[File:Website Menu.png|thumb|Website Menu from Union Cloud Dashboard.]]&lt;br /&gt;
MarComs is a Portmanteau of the words ''Marketing'', and ''Communications'', and that is largely what this section covers, it includes all of the areas to edit content on your site, add '[[Articles Manager|News Articles]]', send out Emails to your members ([[Campaign Manager|Campaigns]]), and managing all of your [[Images Library|Uploaded Images]] &amp;amp; [[Documents Manager|Documents]].&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Some areas, like Developers Toolkit, are slightly more advanced still and allow users with the know how to alter the structure of their site, the navigation, the order / location of pages and more, it also gives the ability to add widgets, sub-sites, and with one of the extra packages, customise the CSS and Javascript within the site, allowing a greater level of bespoking.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the MARCOMS Menu are;&lt;br /&gt;
*[[Web Site Manager]]&lt;br /&gt;
*[[Articles Manager]]&lt;br /&gt;
*[[Documents Manager]]&lt;br /&gt;
*[[Images Library]]&lt;br /&gt;
*[[Developers Toolkit]]&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
[[File:Campaigns Menu.PNG|thumb|Campaigns Menu from Union Cloud Dashboard.]]&lt;br /&gt;
Previously from within the MARCOMS Section, these have been separated out now for Clarity. Campaigns is the section you visit if you wish to send out Email 'Campaigns' from within your UnionCloud site to your membership, it's broken down into four sections.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Campaign Manager]]&lt;br /&gt;
:*Union Pending Campaigns&lt;br /&gt;
:*Union Past Campaigns&lt;br /&gt;
:*NUS Pending Campaigns&lt;br /&gt;
:*NUS Past Campaigns&lt;br /&gt;
&lt;br /&gt;
=== Groups ===&lt;br /&gt;
[[File:Groups_Menu.png|frame|200px|Groups Menu from Union Cloud Dashboard.]]&lt;br /&gt;
Groups is the catch all term we use to describe any student group we want to give some access and independence to on our Website, Typically, these are Sports Clubs &amp;amp; Societies, however some also use it for Course reps, mailing lists, interest groups and one off projects&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
If the people in charge of said group have been assigned permissions, then they can also manage themselves, their own ''minisite'', their own memberships / prices, events, emails and more.&lt;br /&gt;
&lt;br /&gt;
The Sections of the Groups Menu are;&lt;br /&gt;
*[[Manage Groups]]&lt;br /&gt;
*[[Manage Group Promotions|Manage Promotions]]&lt;br /&gt;
*[[Manage Awards]]&lt;br /&gt;
&lt;br /&gt;
=== Events ===&lt;br /&gt;
[[File:Events_Menu.png|frame|200px|Events Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The events section is a useful tool used for eTicketing, Door Entry (Scanning / Redeeming tickets at an event), Obtaining information in advance from all of your guests, notifying them of updates, and giving the abilty to promote events, to boost attention or sales.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the Events Menu are;&lt;br /&gt;
*[[Manage Events]]&lt;br /&gt;
*[[Redeem Tickets]]&lt;br /&gt;
*[[Manage Event Promotions|Manage Promotions]]&lt;br /&gt;
*[[Manage Ticket Orders]]&lt;br /&gt;
&lt;br /&gt;
=== Eshop ===&lt;br /&gt;
[[File:EShop Menu.png|thumb|eShop Menu from Union Cloud Dashboard.]]&lt;br /&gt;
There are currently three options available relating to eShops withing Union Cloud sites; None, Managed, or Union.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
'''None''' is straight forward, a non commercial union who do not wish to sell products.&amp;lt;br/&amp;gt;&lt;br /&gt;
'''Managed''' is an eShop managed by the Union Cloud team, and stocked by [http://www.eponashop.com/ Epona], the Fairtrade clothing supplier that is a subsidiary of NUS, as the shop. &amp;lt;br/&amp;gt;&lt;br /&gt;
'''Union''' is the most common option, and refers to an eShop managed by a member of staff at your Union, and requires you to upload and maintain your stock, and stock levels, reviewing and dispatching orders.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
The financial breakdown for Managed and Union is slightly different, you can get these details by contacting you Membership Engagement Executive.&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the Eshop Menu are;&lt;br /&gt;
*[[Manage Products|Products]]&lt;br /&gt;
*[[Manage Product Categories|Categories]]&lt;br /&gt;
*[[Manage Orders|Orders]]&lt;br /&gt;
*[[Manage Colours|Colours]]&lt;br /&gt;
*[[Manage Eshop Promotions|Product Promotions]]&lt;br /&gt;
*[[Manage Category Discount|Category Discount]]&lt;br /&gt;
*[[Shipping Charges Upload]]&lt;br /&gt;
*[[Stock Report]]&lt;br /&gt;
&lt;br /&gt;
=== Democracy ===&lt;br /&gt;
[[File:Democracy Menu.png|thumb|eShop Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Democracy Menu are;&lt;br /&gt;
*[[Elections]]&lt;br /&gt;
:*[[Elections#Manage Categories|Manage Categories]]&lt;br /&gt;
:*[[Elections#Manage Positions|Manage Positions]]&lt;br /&gt;
:*[[Elections#Manage Elections|Manage Elections]]&lt;br /&gt;
:*[[Elections Dashboard]] '''Will be added with R26'''&lt;br /&gt;
*[[Referendums]]&lt;br /&gt;
*[[Student Voice]]&lt;br /&gt;
:*[[Student Voice#Setup|Setup]]&lt;br /&gt;
:*[[Student Voice#Manage Ideas|Manage Ideas]]&lt;br /&gt;
:*[[Student Voice#Manage Comments|Manage Comments]]&lt;br /&gt;
&lt;br /&gt;
=== Volunteering ===&lt;br /&gt;
[[File:Volunteering Menu.png|thumb|Volunteering Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Volunteering Menu are;&lt;br /&gt;
*[[Volunteering Setup]]&lt;br /&gt;
*[[Manage Volunteers]]&lt;br /&gt;
*[[Manage organisations/projects]]&lt;br /&gt;
*[[Manage opportunities]]&lt;br /&gt;
*[[Dashboard]]&lt;br /&gt;
*[[Manage reports]]&lt;br /&gt;
*[[Upload organisation/project]]&lt;br /&gt;
*[[Volunteer awards]]&lt;br /&gt;
&lt;br /&gt;
=== Reports ===&lt;br /&gt;
[[File:Reports Menu.png|thumb|Reports Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Reports Menu are;&lt;br /&gt;
*[[NUS Analytics]]&lt;br /&gt;
:*[[NUS Analytics#Dynamic KPI's|Dynamic KPIs]]&lt;br /&gt;
:*[[NUS Analytics#Charts|Charts]]&lt;br /&gt;
:*[[NUS Analytics#Student Activity Report|Student Activity Report]]&lt;br /&gt;
*[[Event Booking Details]]&lt;br /&gt;
*[[Finance Report]]&lt;br /&gt;
*[[Group Committee Report]]&lt;br /&gt;
*[[Membership Details]]&lt;br /&gt;
&lt;br /&gt;
== [[Version History]] ==&lt;br /&gt;
&lt;br /&gt;
Links to Version Updates / Release Notes, this stub stores the most recent 3 sprints, and the most recent three major releases, however if you are looking for full details you can find all release / sprint data on the [[Version History]] page.&lt;br /&gt;
&lt;br /&gt;
=== Major Updates ===&lt;br /&gt;
*[[Release 24]]&lt;br /&gt;
*[[Release 25]] - 25th June 2016&lt;br /&gt;
*[[Release 26]] - 26th November 2016 - estimated date&lt;br /&gt;
&lt;br /&gt;
=== Sprint Updates ===&lt;br /&gt;
* [[R25 Patch: 07th November 2016]]&lt;br /&gt;
* [[R26 Patch: 30th November 2016]]&lt;br /&gt;
* [[R25 Patch: 05th December 2016]]&lt;br /&gt;
&lt;br /&gt;
== Misc Info ==&lt;br /&gt;
&lt;br /&gt;
Here we'll list links or info about any documentation that isn't necessarily directly Union Cloud, but may still relate to your usage of the platform.&lt;br /&gt;
&lt;br /&gt;
=== Finance ===&lt;br /&gt;
*[[Transaction Fees]]&lt;br /&gt;
&lt;br /&gt;
===Code Snippets===&lt;br /&gt;
*[[Modify Site Background Image or Colour]]&lt;br /&gt;
*[[Change Officer Stripe Speed]]&lt;br /&gt;
*[[Hide Events on index]]&lt;br /&gt;
*[[Show Count on All Usergroups]]&lt;br /&gt;
*[[Disable candidates already selected in an election]]&lt;br /&gt;
*[[Auto load content on scroll]]&lt;br /&gt;
*[[Rename Student Voice Module]]&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Rename_student_voice&amp;diff=1660</id>
		<title>Rename student voice</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Rename_student_voice&amp;diff=1660"/>
				<updated>2016-12-15T16:44:57Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Orry Verducci moved page Rename student voice to Rename Student Voice Module: Clarified page title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Rename Student Voice Module]]&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Rename_Student_Voice_Module&amp;diff=1659</id>
		<title>Rename Student Voice Module</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Rename_Student_Voice_Module&amp;diff=1659"/>
				<updated>2016-12-15T16:44:57Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Orry Verducci moved page Rename student voice to Rename Student Voice Module: Clarified page title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Many Union's like to brand their Student Voice module with a different name (e.g. Big Ideas).&lt;br /&gt;
&lt;br /&gt;
The below code snippet, which should be copied in to Global Javascript, allows your Union to rename all the titles on the Student Voice module to your local brand name. Make sure you change &amp;quot;PUT YOUR NAME HERE&amp;quot; to your local brand name.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$(function() {&lt;br /&gt;
    if (window.location.pathname.substring(0, 16) == '/thestudentvoice' &amp;amp;&amp;amp; window.location.pathname.length &amp;lt;= 17) {&lt;br /&gt;
        var svName = 'PUT YOUR NAME HERE';&lt;br /&gt;
        $('.uc-heading-title span').html(svName);&lt;br /&gt;
        var siteName = document.title.split('@')[1];&lt;br /&gt;
        document.title = svName + ' @' + siteName;&lt;br /&gt;
    }&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Rename_Student_Voice_Module&amp;diff=1658</id>
		<title>Rename Student Voice Module</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Rename_Student_Voice_Module&amp;diff=1658"/>
				<updated>2016-12-15T16:44:01Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Page creation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Many Union's like to brand their Student Voice module with a different name (e.g. Big Ideas).&lt;br /&gt;
&lt;br /&gt;
The below code snippet, which should be copied in to Global Javascript, allows your Union to rename all the titles on the Student Voice module to your local brand name. Make sure you change &amp;quot;PUT YOUR NAME HERE&amp;quot; to your local brand name.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$(function() {&lt;br /&gt;
    if (window.location.pathname.substring(0, 16) == '/thestudentvoice' &amp;amp;&amp;amp; window.location.pathname.length &amp;lt;= 17) {&lt;br /&gt;
        var svName = 'PUT YOUR NAME HERE';&lt;br /&gt;
        $('.uc-heading-title span').html(svName);&lt;br /&gt;
        var siteName = document.title.split('@')[1];&lt;br /&gt;
        document.title = svName + ' @' + siteName;&lt;br /&gt;
    }&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Main_Page&amp;diff=1657</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Main_Page&amp;diff=1657"/>
				<updated>2016-12-15T16:30:06Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Add Auto load content on scroll snippet&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:NUS_Connect.png|thumb|200px|Screenshot of the NUS Connect Website, one of the heaviest users of the UnionCloud Platform.]]&lt;br /&gt;
&lt;br /&gt;
This Community Wiki, is our venture in hoping that we can provide to you the best, most up to to date, comprehensive, and yet easy to understand support possible. Though our team will be working hard to ensure we cover, and keep on top of this, providing help, support, and guidance on all areas of Union Cloud, there are only so many hours in the day.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
As with all 'Wiki' based websites, we're going to be asking for a little bit of help from you guys, the community. If you're looking through here, and there is something you've noticed is missing, feel free to add it, or let us know that you'd like some help on a particular topic adding. With your help, we can make this a hugely successful support mechanism to allow you to create the best Union Cloud platforms possible for your own institutions!&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Ash&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Digital Support Executive&lt;br /&gt;
== About ==&lt;br /&gt;
First time here? All you need to do is quickly register, as soon as you have, you will be able to view more content, and even make edits!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==FAQ's / Common Questions ==&lt;br /&gt;
*[[User Groups &amp;amp; Permissions|How do I give people permissions on Union Cloud?]]&lt;br /&gt;
*[[How to set up an election|How do I set up an election?]]&lt;br /&gt;
*Creating an Event&lt;br /&gt;
*Uploading a News Story&lt;br /&gt;
*[[Other Support|What other support can I get for UnionCloud?]]&lt;br /&gt;
&lt;br /&gt;
== What would you like help with? ==&lt;br /&gt;
These are the major areas you will come across using the ''Back End'' of Union Cloud.&lt;br /&gt;
&lt;br /&gt;
=== Admin === &lt;br /&gt;
[[File:Admin_Menu.png|frame|200px|Admin Menu from Union Cloud Dashboard.]]&lt;br /&gt;
&lt;br /&gt;
The Admin section of the Union Cloud Dashboard contains all of the tools you as the Administrator are likely to need to make sure that your site functions, and functions correctly. Everything from setting up the specific ID's students are allowed to register with, Single Sign On, Nominal Codes for your finance teams, Data Uploads, and more.&lt;br /&gt;
&lt;br /&gt;
It is the main suite of tools you will use to manage your site, [[Setup]], is mainly used, as it would suggest, in the setup of your website, the crucial settings, and, custom email responses, often this is made up of the settings that doesn't require changing too often. The other group of tools, you will use more frequently, though which tools are available to you will depend on which Union Cloud package you are on.&lt;br /&gt;
&lt;br /&gt;
The Sections of the Admin Menu are;&lt;br /&gt;
*[[Setup]]&lt;br /&gt;
*[[User Groups &amp;amp; Permissions|User Groups]]&lt;br /&gt;
*[[Remote Sales]]&lt;br /&gt;
*[[User Account Details]]&lt;br /&gt;
*[[Manage Refunds]]&lt;br /&gt;
*[[Manage Course Rep]]&lt;br /&gt;
*[[Upload Files]]&lt;br /&gt;
*[[Android App]]&lt;br /&gt;
&lt;br /&gt;
=== Website === &lt;br /&gt;
[[File:Website Menu.png|thumb|Website Menu from Union Cloud Dashboard.]]&lt;br /&gt;
MarComs is a Portmanteau of the words ''Marketing'', and ''Communications'', and that is largely what this section covers, it includes all of the areas to edit content on your site, add '[[Articles Manager|News Articles]]', send out Emails to your members ([[Campaign Manager|Campaigns]]), and managing all of your [[Images Library|Uploaded Images]] &amp;amp; [[Documents Manager|Documents]].&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Some areas, like Developers Toolkit, are slightly more advanced still and allow users with the know how to alter the structure of their site, the navigation, the order / location of pages and more, it also gives the ability to add widgets, sub-sites, and with one of the extra packages, customise the CSS and Javascript within the site, allowing a greater level of bespoking.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the MARCOMS Menu are;&lt;br /&gt;
*[[Web Site Manager]]&lt;br /&gt;
*[[Articles Manager]]&lt;br /&gt;
*[[Documents Manager]]&lt;br /&gt;
*[[Images Library]]&lt;br /&gt;
*[[Developers Toolkit]]&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
[[File:Campaigns Menu.PNG|thumb|Campaigns Menu from Union Cloud Dashboard.]]&lt;br /&gt;
Previously from within the MARCOMS Section, these have been separated out now for Clarity. Campaigns is the section you visit if you wish to send out Email 'Campaigns' from within your UnionCloud site to your membership, it's broken down into four sections.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Campaign Manager]]&lt;br /&gt;
:*Union Pending Campaigns&lt;br /&gt;
:*Union Past Campaigns&lt;br /&gt;
:*NUS Pending Campaigns&lt;br /&gt;
:*NUS Past Campaigns&lt;br /&gt;
&lt;br /&gt;
=== Groups ===&lt;br /&gt;
[[File:Groups_Menu.png|frame|200px|Groups Menu from Union Cloud Dashboard.]]&lt;br /&gt;
Groups is the catch all term we use to describe any student group we want to give some access and independence to on our Website, Typically, these are Sports Clubs &amp;amp; Societies, however some also use it for Course reps, mailing lists, interest groups and one off projects&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
If the people in charge of said group have been assigned permissions, then they can also manage themselves, their own ''minisite'', their own memberships / prices, events, emails and more.&lt;br /&gt;
&lt;br /&gt;
The Sections of the Groups Menu are;&lt;br /&gt;
*[[Manage Groups]]&lt;br /&gt;
*[[Manage Group Promotions|Manage Promotions]]&lt;br /&gt;
*[[Manage Awards]]&lt;br /&gt;
&lt;br /&gt;
=== Events ===&lt;br /&gt;
[[File:Events_Menu.png|frame|200px|Events Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The events section is a useful tool used for eTicketing, Door Entry (Scanning / Redeeming tickets at an event), Obtaining information in advance from all of your guests, notifying them of updates, and giving the abilty to promote events, to boost attention or sales.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the Events Menu are;&lt;br /&gt;
*[[Manage Events]]&lt;br /&gt;
*[[Redeem Tickets]]&lt;br /&gt;
*[[Manage Event Promotions|Manage Promotions]]&lt;br /&gt;
*[[Manage Ticket Orders]]&lt;br /&gt;
&lt;br /&gt;
=== Eshop ===&lt;br /&gt;
[[File:EShop Menu.png|thumb|eShop Menu from Union Cloud Dashboard.]]&lt;br /&gt;
There are currently three options available relating to eShops withing Union Cloud sites; None, Managed, or Union.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
'''None''' is straight forward, a non commercial union who do not wish to sell products.&amp;lt;br/&amp;gt;&lt;br /&gt;
'''Managed''' is an eShop managed by the Union Cloud team, and stocked by [http://www.eponashop.com/ Epona], the Fairtrade clothing supplier that is a subsidiary of NUS, as the shop. &amp;lt;br/&amp;gt;&lt;br /&gt;
'''Union''' is the most common option, and refers to an eShop managed by a member of staff at your Union, and requires you to upload and maintain your stock, and stock levels, reviewing and dispatching orders.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
The financial breakdown for Managed and Union is slightly different, you can get these details by contacting you Membership Engagement Executive.&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the Eshop Menu are;&lt;br /&gt;
*[[Manage Products|Products]]&lt;br /&gt;
*[[Manage Product Categories|Categories]]&lt;br /&gt;
*[[Manage Orders|Orders]]&lt;br /&gt;
*[[Manage Colours|Colours]]&lt;br /&gt;
*[[Manage Eshop Promotions|Product Promotions]]&lt;br /&gt;
*[[Manage Category Discount|Category Discount]]&lt;br /&gt;
*[[Shipping Charges Upload]]&lt;br /&gt;
*[[Stock Report]]&lt;br /&gt;
&lt;br /&gt;
=== Democracy ===&lt;br /&gt;
[[File:Democracy Menu.png|thumb|eShop Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Democracy Menu are;&lt;br /&gt;
*[[Elections]]&lt;br /&gt;
:*[[Elections#Manage Categories|Manage Categories]]&lt;br /&gt;
:*[[Elections#Manage Positions|Manage Positions]]&lt;br /&gt;
:*[[Elections#Manage Elections|Manage Elections]]&lt;br /&gt;
:*[[Elections Dashboard]] '''Will be added with R26'''&lt;br /&gt;
*[[Referendums]]&lt;br /&gt;
*[[Student Voice]]&lt;br /&gt;
:*[[Student Voice#Setup|Setup]]&lt;br /&gt;
:*[[Student Voice#Manage Ideas|Manage Ideas]]&lt;br /&gt;
:*[[Student Voice#Manage Comments|Manage Comments]]&lt;br /&gt;
&lt;br /&gt;
=== Volunteering ===&lt;br /&gt;
[[File:Volunteering Menu.png|thumb|Volunteering Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Volunteering Menu are;&lt;br /&gt;
*[[Volunteering Setup]]&lt;br /&gt;
*[[Manage Volunteers]]&lt;br /&gt;
*[[Manage organisations/projects]]&lt;br /&gt;
*[[Manage opportunities]]&lt;br /&gt;
*[[Dashboard]]&lt;br /&gt;
*[[Manage reports]]&lt;br /&gt;
*[[Upload organisation/project]]&lt;br /&gt;
*[[Volunteer awards]]&lt;br /&gt;
&lt;br /&gt;
=== Reports ===&lt;br /&gt;
[[File:Reports Menu.png|thumb|Reports Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Reports Menu are;&lt;br /&gt;
*[[NUS Analytics]]&lt;br /&gt;
:*[[NUS Analytics#Dynamic KPI's|Dynamic KPIs]]&lt;br /&gt;
:*[[NUS Analytics#Charts|Charts]]&lt;br /&gt;
:*[[NUS Analytics#Student Activity Report|Student Activity Report]]&lt;br /&gt;
*[[Event Booking Details]]&lt;br /&gt;
*[[Finance Report]]&lt;br /&gt;
*[[Group Committee Report]]&lt;br /&gt;
*[[Membership Details]]&lt;br /&gt;
&lt;br /&gt;
== [[Version History]] ==&lt;br /&gt;
&lt;br /&gt;
Links to Version Updates / Release Notes, this stub stores the most recent 3 sprints, and the most recent three major releases, however if you are looking for full details you can find all release / sprint data on the [[Version History]] page.&lt;br /&gt;
&lt;br /&gt;
=== Major Updates ===&lt;br /&gt;
*[[Release 24]]&lt;br /&gt;
*[[Release 25]] - 25th June 2016&lt;br /&gt;
*[[Release 26]] - 26th November 2016 - estimated date&lt;br /&gt;
&lt;br /&gt;
=== Sprint Updates ===&lt;br /&gt;
* [[R25 Patch: 07th November 2016]]&lt;br /&gt;
* [[R26 Patch: 30th November 2016]]&lt;br /&gt;
* [[R25 Patch: 05th December 2016]]&lt;br /&gt;
&lt;br /&gt;
== Misc Info ==&lt;br /&gt;
&lt;br /&gt;
Here we'll list links or info about any documentation that isn't necessarily directly Union Cloud, but may still relate to your usage of the platform.&lt;br /&gt;
&lt;br /&gt;
=== Finance ===&lt;br /&gt;
*[[Transaction Fees]]&lt;br /&gt;
&lt;br /&gt;
===Code Snippets===&lt;br /&gt;
*[[Modify Site Background Image or Colour]]&lt;br /&gt;
*[[Change Officer Stripe Speed]]&lt;br /&gt;
*[[Hide Events on index]]&lt;br /&gt;
*[[Show Count on All Usergroups]]&lt;br /&gt;
*[[Disable candidates already selected in an election]]&lt;br /&gt;
*[[Auto load content on scroll]]&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Auto_load_content_on_scroll&amp;diff=1656</id>
		<title>Auto load content on scroll</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Auto_load_content_on_scroll&amp;diff=1656"/>
				<updated>2016-12-15T16:29:24Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Change to else ifs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are many pages on the platform that limit the content shown, and have a 'load more' button at the bottom which loads the next page when clicked.&lt;br /&gt;
&lt;br /&gt;
The following code snippet enables automatic loading of the content as visitors scroll down the page, similar to how Facebook and Twitter do, improving the user experience as users can just scroll down without having to keep clicking 'load more'.&lt;br /&gt;
&lt;br /&gt;
To snippet should be copied into Global Javascript.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
function EnableAutoLoadMore(buttonElement, contentElement) {&lt;br /&gt;
    $(window).bind('scroll', function() {&lt;br /&gt;
        if (typeof $(buttonElement).first().attr('data-loadmore') === typeof undefined || $(buttonElement).first().attr('data-loadmore') == false) {&lt;br /&gt;
             $(buttonElement).first().attr('data-loadmore', 0);&lt;br /&gt;
        }&lt;br /&gt;
        if ($(buttonElement + ':visible').length &amp;gt; 0) {&lt;br /&gt;
        	if (($(window).height() + $(document).scrollTop()) &amp;gt; ($(buttonElement).first().offset().top - 80) &amp;amp;&amp;amp; $(contentElement).first().children().length &amp;gt; $(buttonElement).first().attr('data-loadmore')) {&lt;br /&gt;
                $(buttonElement).first().attr('data-loadmore', $(contentElement).first().children().length);&lt;br /&gt;
                $(buttonElement).click();&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    });&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
$(function() {&lt;br /&gt;
    if (window.location.pathname.substring(0, 7) == '/events' &amp;amp;&amp;amp; window.location.pathname.length &amp;lt;= 8) {&lt;br /&gt;
        EnableAutoLoadMore('#load-more-events', '#uc-event-right-panel-listing');&lt;br /&gt;
    } else if (window.location.pathname.substring(0, 7) == '/groups') {&lt;br /&gt;
        EnableAutoLoadMore('#uc-more-group-search', '.category-box-wrapper');&lt;br /&gt;
        $('.club-navigation ul li').click(function() {&lt;br /&gt;
            $('#uc-more-group-search').first().attr('data-loadmore', 0);&lt;br /&gt;
        });&lt;br /&gt;
        $('.group-types-wrapper ul li').click(function() {&lt;br /&gt;
            $('#uc-more-group-search').first().attr('data-loadmore', 0);&lt;br /&gt;
        });&lt;br /&gt;
    } else if (window.location.pathname.substring(0, 9) == '/articles' &amp;amp;&amp;amp; window.location.pathname.length &amp;lt;= 10) {&lt;br /&gt;
        EnableAutoLoadMore('#load_more_article', '.uc-articles-listing');&lt;br /&gt;
    } else if (window.location.pathname.substring(0, 16) == '/thestudentvoice' &amp;amp;&amp;amp; window.location.pathname.length &amp;lt;= 17) {&lt;br /&gt;
        EnableAutoLoadMore('#load_more_sv', '.uc-sv-left-panel-wrapper');&lt;br /&gt;
        $('#uc-sv-navigation li a').click(function() {&lt;br /&gt;
            $('#load_more_sv').first().attr('data-loadmore', 0);&lt;br /&gt;
        });&lt;br /&gt;
    }&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Auto_load_content_on_scroll&amp;diff=1655</id>
		<title>Auto load content on scroll</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Auto_load_content_on_scroll&amp;diff=1655"/>
				<updated>2016-12-15T16:28:08Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Page creation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are many pages on the platform that limit the content shown, and have a 'load more' button at the bottom which loads the next page when clicked.&lt;br /&gt;
&lt;br /&gt;
The following code snippet enables automatic loading of the content as visitors scroll down the page, similar to how Facebook and Twitter do, improving the user experience as users can just scroll down without having to keep clicking 'load more'.&lt;br /&gt;
&lt;br /&gt;
To snippet should be copied into Global Javascript.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
function EnableAutoLoadMore(buttonElement, contentElement) {&lt;br /&gt;
    $(window).bind('scroll', function() {&lt;br /&gt;
        if (typeof $(buttonElement).first().attr('data-loadmore') === typeof undefined || $(buttonElement).first().attr('data-loadmore') == false) {&lt;br /&gt;
             $(buttonElement).first().attr('data-loadmore', 0);&lt;br /&gt;
        }&lt;br /&gt;
        if ($(buttonElement + ':visible').length &amp;gt; 0) {&lt;br /&gt;
        	if (($(window).height() + $(document).scrollTop()) &amp;gt; ($(buttonElement).first().offset().top - 80) &amp;amp;&amp;amp; $(contentElement).first().children().length &amp;gt; $(buttonElement).first().attr('data-loadmore')) {&lt;br /&gt;
                $(buttonElement).first().attr('data-loadmore', $(contentElement).first().children().length);&lt;br /&gt;
                $(buttonElement).click();&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    });&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
$(function() {&lt;br /&gt;
    if (window.location.pathname.substring(0, 7) == '/events' &amp;amp;&amp;amp; window.location.pathname.length &amp;lt;= 8) {&lt;br /&gt;
        EnableAutoLoadMore('#load-more-events', '#uc-event-right-panel-listing');&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    if (window.location.pathname.substring(0, 7) == '/groups') {&lt;br /&gt;
        EnableAutoLoadMore('#uc-more-group-search', '.category-box-wrapper');&lt;br /&gt;
        $('.club-navigation ul li').click(function() {&lt;br /&gt;
            $('#uc-more-group-search').first().attr('data-loadmore', 0);&lt;br /&gt;
        });&lt;br /&gt;
        $('.group-types-wrapper ul li').click(function() {&lt;br /&gt;
            $('#uc-more-group-search').first().attr('data-loadmore', 0);&lt;br /&gt;
        });&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    if (window.location.pathname.substring(0, 9) == '/articles' &amp;amp;&amp;amp; window.location.pathname.length &amp;lt;= 10) {&lt;br /&gt;
        EnableAutoLoadMore('#load_more_article', '.uc-articles-listing');&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    if (window.location.pathname.substring(0, 16) == '/thestudentvoice' &amp;amp;&amp;amp; window.location.pathname.length &amp;lt;= 17) {&lt;br /&gt;
        EnableAutoLoadMore('#load_more_sv', '.uc-sv-left-panel-wrapper');&lt;br /&gt;
        $('#uc-sv-navigation li a').click(function() {&lt;br /&gt;
            $('#load_more_sv').first().attr('data-loadmore', 0);&lt;br /&gt;
        });&lt;br /&gt;
    }&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Disable_candidates_already_selected_in_an_election&amp;diff=1654</id>
		<title>Disable candidates already selected in an election</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Disable_candidates_already_selected_in_an_election&amp;diff=1654"/>
				<updated>2016-12-15T16:16:09Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Add missing variable&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Currently every candidate in an election is shown on every positions drop down menu, which makes it easy for a student to accidentally select a candidate they have already chosen for another position, especially if you have lots of candidates.&lt;br /&gt;
&lt;br /&gt;
If you have access to Global Javascript, you can paste in the code snippet below, which disables and greys out candidates that have already been selected for other positions, preventing students accidentally selecting a candidate twice (which would give an error) and making it easier to see who they've already selected.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
var electionChosenCandidates = {};&lt;br /&gt;
&lt;br /&gt;
$(function() {&lt;br /&gt;
    if (window.location.pathname.substring(0, 40) == '/evoting_election_votings/select_choices') {&lt;br /&gt;
        $('.uc-candidates-preferences select').each(function(index) {&lt;br /&gt;
            UpdateCandidates(this);&lt;br /&gt;
        });&lt;br /&gt;
        $('.uc-candidates-preferences select').bind('change', CandidateChange);&lt;br /&gt;
    }&lt;br /&gt;
});&lt;br /&gt;
&lt;br /&gt;
function CandidateChange(type, data, handler) {&lt;br /&gt;
    UpdateCandidates(this);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function UpdateCandidates(selectElement) {&lt;br /&gt;
    var chosenOption = $(selectElement).val();&lt;br /&gt;
    var existingOption = ($(selectElement).attr('id') in electionChosenCandidates) ? electionChosenCandidates[$(selectElement).attr('id')] : -1;&lt;br /&gt;
    electionChosenCandidates[$(selectElement).attr('id')] = chosenOption;&lt;br /&gt;
    $('.uc-candidates-preferences select').not(selectElement).each(function(index) {&lt;br /&gt;
        $(this).find('option[value=' + chosenOption + ']').attr('disabled', true);&lt;br /&gt;
        if (existingOption &amp;gt;= 0) {&lt;br /&gt;
            $(this).find('option[value=' + existingOption + ']').attr('disabled', false);&lt;br /&gt;
        }&lt;br /&gt;
    });&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Change_Officer_Stripe_Speed&amp;diff=1653</id>
		<title>Change Officer Stripe Speed</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Change_Officer_Stripe_Speed&amp;diff=1653"/>
				<updated>2016-12-15T15:54:25Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Change Global CSS to Global Javascript and fix code formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:OfficerStripe.PNG|thumb|This is an example officer stripe on UnionCloud]]&lt;br /&gt;
If you are using the default Union Cloud Officer Stripe, section type to display profile pictures on a page within your website you can add the following line of code to your [[Global Javascript]] to change the scroll speed.&lt;br /&gt;
&lt;br /&gt;
To change the speed of the scroll simply change the 'auto:X,' line and replace the X with the number of seconds you want to delay the scroll, the example below uses 2 seconds.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
	$('.auto-stripe ul').jcarousel({&lt;br /&gt;
		scroll:1,&lt;br /&gt;
		wrap: 'last',&lt;br /&gt;
		auto:2,&lt;br /&gt;
		itemFallbackDimension: 300&lt;br /&gt;
	});&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Main_Page&amp;diff=1652</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Main_Page&amp;diff=1652"/>
				<updated>2016-12-15T15:52:25Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:NUS_Connect.png|thumb|200px|Screenshot of the NUS Connect Website, one of the heaviest users of the UnionCloud Platform.]]&lt;br /&gt;
&lt;br /&gt;
This Community Wiki, is our venture in hoping that we can provide to you the best, most up to to date, comprehensive, and yet easy to understand support possible. Though our team will be working hard to ensure we cover, and keep on top of this, providing help, support, and guidance on all areas of Union Cloud, there are only so many hours in the day.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
As with all 'Wiki' based websites, we're going to be asking for a little bit of help from you guys, the community. If you're looking through here, and there is something you've noticed is missing, feel free to add it, or let us know that you'd like some help on a particular topic adding. With your help, we can make this a hugely successful support mechanism to allow you to create the best Union Cloud platforms possible for your own institutions!&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Ash&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Digital Support Executive&lt;br /&gt;
== About ==&lt;br /&gt;
First time here? All you need to do is quickly register, as soon as you have, you will be able to view more content, and even make edits!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==FAQ's / Common Questions ==&lt;br /&gt;
*[[User Groups &amp;amp; Permissions|How do I give people permissions on Union Cloud?]]&lt;br /&gt;
*[[How to set up an election|How do I set up an election?]]&lt;br /&gt;
*Creating an Event&lt;br /&gt;
*Uploading a News Story&lt;br /&gt;
*[[Other Support|What other support can I get for UnionCloud?]]&lt;br /&gt;
&lt;br /&gt;
== What would you like help with? ==&lt;br /&gt;
These are the major areas you will come across using the ''Back End'' of Union Cloud.&lt;br /&gt;
&lt;br /&gt;
=== Admin === &lt;br /&gt;
[[File:Admin_Menu.png|frame|200px|Admin Menu from Union Cloud Dashboard.]]&lt;br /&gt;
&lt;br /&gt;
The Admin section of the Union Cloud Dashboard contains all of the tools you as the Administrator are likely to need to make sure that your site functions, and functions correctly. Everything from setting up the specific ID's students are allowed to register with, Single Sign On, Nominal Codes for your finance teams, Data Uploads, and more.&lt;br /&gt;
&lt;br /&gt;
It is the main suite of tools you will use to manage your site, [[Setup]], is mainly used, as it would suggest, in the setup of your website, the crucial settings, and, custom email responses, often this is made up of the settings that doesn't require changing too often. The other group of tools, you will use more frequently, though which tools are available to you will depend on which Union Cloud package you are on.&lt;br /&gt;
&lt;br /&gt;
The Sections of the Admin Menu are;&lt;br /&gt;
*[[Setup]]&lt;br /&gt;
*[[User Groups &amp;amp; Permissions|User Groups]]&lt;br /&gt;
*[[Remote Sales]]&lt;br /&gt;
*[[User Account Details]]&lt;br /&gt;
*[[Manage Refunds]]&lt;br /&gt;
*[[Manage Course Rep]]&lt;br /&gt;
*[[Upload Files]]&lt;br /&gt;
*[[Android App]]&lt;br /&gt;
&lt;br /&gt;
=== Website === &lt;br /&gt;
[[File:Website Menu.png|thumb|Website Menu from Union Cloud Dashboard.]]&lt;br /&gt;
MarComs is a Portmanteau of the words ''Marketing'', and ''Communications'', and that is largely what this section covers, it includes all of the areas to edit content on your site, add '[[Articles Manager|News Articles]]', send out Emails to your members ([[Campaign Manager|Campaigns]]), and managing all of your [[Images Library|Uploaded Images]] &amp;amp; [[Documents Manager|Documents]].&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Some areas, like Developers Toolkit, are slightly more advanced still and allow users with the know how to alter the structure of their site, the navigation, the order / location of pages and more, it also gives the ability to add widgets, sub-sites, and with one of the extra packages, customise the CSS and Javascript within the site, allowing a greater level of bespoking.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the MARCOMS Menu are;&lt;br /&gt;
*[[Web Site Manager]]&lt;br /&gt;
*[[Articles Manager]]&lt;br /&gt;
*[[Documents Manager]]&lt;br /&gt;
*[[Images Library]]&lt;br /&gt;
*[[Developers Toolkit]]&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
[[File:Campaigns Menu.PNG|thumb|Campaigns Menu from Union Cloud Dashboard.]]&lt;br /&gt;
Previously from within the MARCOMS Section, these have been separated out now for Clarity. Campaigns is the section you visit if you wish to send out Email 'Campaigns' from within your UnionCloud site to your membership, it's broken down into four sections.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Campaign Manager]]&lt;br /&gt;
:*Union Pending Campaigns&lt;br /&gt;
:*Union Past Campaigns&lt;br /&gt;
:*NUS Pending Campaigns&lt;br /&gt;
:*NUS Past Campaigns&lt;br /&gt;
&lt;br /&gt;
=== Groups ===&lt;br /&gt;
[[File:Groups_Menu.png|frame|200px|Groups Menu from Union Cloud Dashboard.]]&lt;br /&gt;
Groups is the catch all term we use to describe any student group we want to give some access and independence to on our Website, Typically, these are Sports Clubs &amp;amp; Societies, however some also use it for Course reps, mailing lists, interest groups and one off projects&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
If the people in charge of said group have been assigned permissions, then they can also manage themselves, their own ''minisite'', their own memberships / prices, events, emails and more.&lt;br /&gt;
&lt;br /&gt;
The Sections of the Groups Menu are;&lt;br /&gt;
*[[Manage Groups]]&lt;br /&gt;
*[[Manage Group Promotions|Manage Promotions]]&lt;br /&gt;
*[[Manage Awards]]&lt;br /&gt;
&lt;br /&gt;
=== Events ===&lt;br /&gt;
[[File:Events_Menu.png|frame|200px|Events Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The events section is a useful tool used for eTicketing, Door Entry (Scanning / Redeeming tickets at an event), Obtaining information in advance from all of your guests, notifying them of updates, and giving the abilty to promote events, to boost attention or sales.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the Events Menu are;&lt;br /&gt;
*[[Manage Events]]&lt;br /&gt;
*[[Redeem Tickets]]&lt;br /&gt;
*[[Manage Event Promotions|Manage Promotions]]&lt;br /&gt;
*[[Manage Ticket Orders]]&lt;br /&gt;
&lt;br /&gt;
=== Eshop ===&lt;br /&gt;
[[File:EShop Menu.png|thumb|eShop Menu from Union Cloud Dashboard.]]&lt;br /&gt;
There are currently three options available relating to eShops withing Union Cloud sites; None, Managed, or Union.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
'''None''' is straight forward, a non commercial union who do not wish to sell products.&amp;lt;br/&amp;gt;&lt;br /&gt;
'''Managed''' is an eShop managed by the Union Cloud team, and stocked by [http://www.eponashop.com/ Epona], the Fairtrade clothing supplier that is a subsidiary of NUS, as the shop. &amp;lt;br/&amp;gt;&lt;br /&gt;
'''Union''' is the most common option, and refers to an eShop managed by a member of staff at your Union, and requires you to upload and maintain your stock, and stock levels, reviewing and dispatching orders.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
The financial breakdown for Managed and Union is slightly different, you can get these details by contacting you Membership Engagement Executive.&amp;lt;br/&amp;gt;&lt;br /&gt;
The Sections of the Eshop Menu are;&lt;br /&gt;
*[[Manage Products|Products]]&lt;br /&gt;
*[[Manage Product Categories|Categories]]&lt;br /&gt;
*[[Manage Orders|Orders]]&lt;br /&gt;
*[[Manage Colours|Colours]]&lt;br /&gt;
*[[Manage Eshop Promotions|Product Promotions]]&lt;br /&gt;
*[[Manage Category Discount|Category Discount]]&lt;br /&gt;
*[[Shipping Charges Upload]]&lt;br /&gt;
*[[Stock Report]]&lt;br /&gt;
&lt;br /&gt;
=== Democracy ===&lt;br /&gt;
[[File:Democracy Menu.png|thumb|eShop Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Democracy Menu are;&lt;br /&gt;
*[[Elections]]&lt;br /&gt;
:*[[Elections#Manage Categories|Manage Categories]]&lt;br /&gt;
:*[[Elections#Manage Positions|Manage Positions]]&lt;br /&gt;
:*[[Elections#Manage Elections|Manage Elections]]&lt;br /&gt;
:*[[Elections Dashboard]] '''Will be added with R26'''&lt;br /&gt;
*[[Referendums]]&lt;br /&gt;
*[[Student Voice]]&lt;br /&gt;
:*[[Student Voice#Setup|Setup]]&lt;br /&gt;
:*[[Student Voice#Manage Ideas|Manage Ideas]]&lt;br /&gt;
:*[[Student Voice#Manage Comments|Manage Comments]]&lt;br /&gt;
&lt;br /&gt;
=== Volunteering ===&lt;br /&gt;
[[File:Volunteering Menu.png|thumb|Volunteering Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Volunteering Menu are;&lt;br /&gt;
*[[Volunteering Setup]]&lt;br /&gt;
*[[Manage Volunteers]]&lt;br /&gt;
*[[Manage organisations/projects]]&lt;br /&gt;
*[[Manage opportunities]]&lt;br /&gt;
*[[Dashboard]]&lt;br /&gt;
*[[Manage reports]]&lt;br /&gt;
*[[Upload organisation/project]]&lt;br /&gt;
*[[Volunteer awards]]&lt;br /&gt;
&lt;br /&gt;
=== Reports ===&lt;br /&gt;
[[File:Reports Menu.png|thumb|Reports Menu from Union Cloud Dashboard.]]&lt;br /&gt;
The Sections of the Reports Menu are;&lt;br /&gt;
*[[NUS Analytics]]&lt;br /&gt;
:*[[NUS Analytics#Dynamic KPI's|Dynamic KPIs]]&lt;br /&gt;
:*[[NUS Analytics#Charts|Charts]]&lt;br /&gt;
:*[[NUS Analytics#Student Activity Report|Student Activity Report]]&lt;br /&gt;
*[[Event Booking Details]]&lt;br /&gt;
*[[Finance Report]]&lt;br /&gt;
*[[Group Committee Report]]&lt;br /&gt;
*[[Membership Details]]&lt;br /&gt;
&lt;br /&gt;
== [[Version History]] ==&lt;br /&gt;
&lt;br /&gt;
Links to Version Updates / Release Notes, this stub stores the most recent 3 sprints, and the most recent three major releases, however if you are looking for full details you can find all release / sprint data on the [[Version History]] page.&lt;br /&gt;
&lt;br /&gt;
=== Major Updates ===&lt;br /&gt;
*[[Release 24]]&lt;br /&gt;
*[[Release 25]] - 25th June 2016&lt;br /&gt;
*[[Release 26]] - 26th November 2016 - estimated date&lt;br /&gt;
&lt;br /&gt;
=== Sprint Updates ===&lt;br /&gt;
* [[R25 Patch: 07th November 2016]]&lt;br /&gt;
* [[R26 Patch: 30th November 2016]]&lt;br /&gt;
* [[R25 Patch: 05th December 2016]]&lt;br /&gt;
&lt;br /&gt;
== Misc Info ==&lt;br /&gt;
&lt;br /&gt;
Here we'll list links or info about any documentation that isn't necessarily directly Union Cloud, but may still relate to your usage of the platform.&lt;br /&gt;
&lt;br /&gt;
=== Finance ===&lt;br /&gt;
*[[Transaction Fees]]&lt;br /&gt;
&lt;br /&gt;
===Code Snippets===&lt;br /&gt;
*[[Modify Site Background Image or Colour]]&lt;br /&gt;
*[[Change Officer Stripe Speed]]&lt;br /&gt;
*[[Hide Events on index]]&lt;br /&gt;
*[[Show Count on All Usergroups]]&lt;br /&gt;
*[[Disable candidates already selected in an election]]&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	<entry>
		<id>https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Disable_candidates_already_selected_in_an_election&amp;diff=1651</id>
		<title>Disable candidates already selected in an election</title>
		<link rel="alternate" type="text/html" href="https://support.unioncloud.org/UnionCloud/wiki/index.php?title=Disable_candidates_already_selected_in_an_election&amp;diff=1651"/>
				<updated>2016-12-15T15:51:59Z</updated>
		
		<summary type="html">&lt;p&gt;Orry Verducci: Page creation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Currently every candidate in an election is shown on every positions drop down menu, which makes it easy for a student to accidentally select a candidate they have already chosen for another position, especially if you have lots of candidates.&lt;br /&gt;
&lt;br /&gt;
If you have access to Global Javascript, you can paste in the code snippet below, which disables and greys out candidates that have already been selected for other positions, preventing students accidentally selecting a candidate twice (which would give an error) and making it easier to see who they've already selected.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$(function() {&lt;br /&gt;
    if (window.location.pathname.substring(0, 40) == '/evoting_election_votings/select_choices') {&lt;br /&gt;
        $('.uc-candidates-preferences select').each(function(index) {&lt;br /&gt;
            UpdateCandidates(this);&lt;br /&gt;
        });&lt;br /&gt;
        $('.uc-candidates-preferences select').bind('change', CandidateChange);&lt;br /&gt;
    }&lt;br /&gt;
});&lt;br /&gt;
&lt;br /&gt;
function CandidateChange(type, data, handler) {&lt;br /&gt;
    UpdateCandidates(this);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function UpdateCandidates(selectElement) {&lt;br /&gt;
    var chosenOption = $(selectElement).val();&lt;br /&gt;
    var existingOption = ($(selectElement).attr('id') in electionChosenCandidates) ? electionChosenCandidates[$(selectElement).attr('id')] : -1;&lt;br /&gt;
    electionChosenCandidates[$(selectElement).attr('id')] = chosenOption;&lt;br /&gt;
    $('.uc-candidates-preferences select').not(selectElement).each(function(index) {&lt;br /&gt;
        $(this).find('option[value=' + chosenOption + ']').attr('disabled', true);&lt;br /&gt;
        if (existingOption &amp;gt;= 0) {&lt;br /&gt;
            $(this).find('option[value=' + existingOption + ']').attr('disabled', false);&lt;br /&gt;
        }&lt;br /&gt;
    });&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Orry Verducci</name></author>	</entry>

	</feed>