[&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> |