This URL takes a user to a list of all the campaigns that are available online as per the image below.
If no category is used, the above link will direct a patron to the Donation Campaign Page and show all donation campaigns in all categories, like the HTML page below, from which they can pick.
A sample is shown at the bottom of the help page.
General Parameters
You can specify one or more categories in the URL and only those categories will be shown. In this case, the category numbers must be the same as the code table entry number in the Donation Campaign Code Table shown above. Icons are entered on the Description Tab in Donation Campaign setup.
You might use this to show capital campaign or individual gifts on a separate web page.
You can also Link to specific donations if you wish.
This link will take the patron to the donation page in the online sales. It will show a fillable form where he patron can make changes to their choices, change amounts and then add the donation to their shopping cart.
NOTE: the normal route taken by the web server after adding the donation is to go to the shopping cart window. You can alter that destination in a form by using the hidden param below within your form
<input type="hidden" name="param" value="altbtn=btnCheckout" /> altbtn=btnCheckout can be substituted for other web pages, so you could, for example, take the patron to the gift certificate page. |
|
If you would like to show progress to a target, then edit the Statistics Tab on the donation campaign window and click the show on internet (meaning show the progress on internet) |
The Donation List window will populate with Donation Campaigns. Replace the "xx" in the link above with the appropriate donation sequence number to create a direct link to the donation.
For more information on the Donation List widow click here.
[&DD_FLD1_FC_SEQ=pp][& DD_FLD2_FC_SEQ=qq][& DD_FLD3_FC_SEQ =rr][&frequency=0][¶m=altbtn=btnCheckout][&tmsource=zzzzz]
This link allows you to add a donation to the shopping cart with minimal interaction. It means you can put it anywhere on any web page. The user does not get any choices. If you wish choices like Donate $10 or Donate $50, you will need to put multiple buttons on the page.
This URL supports quickly adding a donation to a cart from ANY web page including:
|
In the image above, the URL to quickly add a donation can be on any page. If it contains the minimum data needed, the diagram shows the flow that occurs for regular patron checkout and for guest checkout.
The following parameters can be added after the tickets.yourvenue.org/TheatreManager/1/login?
Use the param features if you want the patron to go directly to the checkout page. Patrons will:
Note: If any donor popup is mandatory in company preferences, you must specify this parameter and a value for it in the URL. |
Values of frequency are:
In this example, there are 4 actual links:
The links (above) are part of this sample fundraising form letter created in Theatre Manager with the purpose of emailing to ask people to donate. It is based on patrons so that I could use a mail list to determine the people to send to - meaning it could be volunteers plus donors in past year, plus ticket buyers with cancelled shows, etc.
The general steps to create the letter were:
NOTE: make sure to put the URL into the right field
It looks like a regular email sent to people. Theatre Manager tracks
In the sample letter, I clicked on both buttons to show the effect and logged in. Because I clicked on them one at a time, both donations got added to a shopping cart as per the image below. The buttons below are included and active in case you want to try them.
This illustrates an e-blast with a one button donation ask for specific amounts. All the user would need to do is log in (or create an anonymous profile that you can merge later) and pay. A donation can be done in 3 button clicks.
The example code is below the image
While the code below could be placed anywhere in an appropriate web page file in Theatre Managers 'WePages' folder, the following was added to TMtemplates/tmTicketCustomPatronInstructions.html as an existing convenient way to place buttons at the top of the event list. Other good places to add donation buttons are:
The TMtemplates/tmTicketCustomPatronInstructions.html file is used in all event lists and normally has nothing in it.
<div class="alert alert-warning fade in"> <!--#include virtual="TMtemplates/tmMessageDismiss.html" --> Please consider a donation to the theatre during this time of need. All donations are tax deductible. <br/> <br/> <a class="btn btn-info btn-sm" href="<field>F_HTML_FIREWALL</field>login?donationquick=1&amount=50.00¶m=altbtn=btnCheckout&tmsource=sometag"> <i class="fa fa-usd"> </i> 50 one time </a> <a class="btn btn-primary btn-sm" href="<field>F_HTML_FIREWALL</field>login?donationquick=1&amount=250.00¶m=altbtn=btnCheckout&tmsource=sometag"> <i class="fa fa-usd"> </i> 250 one time </a> <a class="btn btn-success btn-sm" href="<field>F_HTML_FIREWALL</field>login?donationquick=1&amount=10.00¶m=altbtn=btnCheckout&frequency=1&has tmsource=sometag"> <i class="fa fa-usd"> </i> 10 a month - I'd like to give a little for a little longer </a> </div> |
Three sample links are shown below that you can click on followed by the example web page in yellow.
Note: the web page looks very plain because all stylesheet information has been removed for clarity. You may need to add your own style sheets to create buttons like the example code within Theatre Managers event list |
The code below is a complete web page - including the head and body tags. You would only want to copy the links to place them into any of your existing web code such as facebook or wordpess sites
<!DOCTYPE html> <html lang="en"> <head> <title> Asking for a donation on a simple web page </title> </head> <body> Sample web page snippet asking for a donation. The links below have not been enhanced with any stylesheet themes <br/> <a href="https:∕∕tickets.artsman.com/TheatreManager/1/login?donationquick=1&amount=50.00¶m=altbtn=btnCheckout&morning&tmsource=mysourcetag" target="_blank"> Donate $50 one time </a> <br/> <a href="https:∕∕tickets.artsman.com/TheatreManager/1/login?donationquick=1&amount=250.00¶m=altbtn=btnCheckout&tmsource=mysourcetag" target="_blank"> Donate $250 one time </a> <br/> <a href="https:∕∕tickets.artsman.com/TheatreManager/1/login?donationquick=1&amount=10.00¶m=altbtn=btnCheckout&frequency=1&tmsource=mysourcetag" target="_blank"> Donate $10 a month - a little for a lot </a> </body> </html> |