Luminate Online Transaction Summary - Custom

Options
Hello - I know that this subject has been discussed multiple times on the forum, but I'm hoping for some newer (more recent) information. We are having two issues with the default transaction summary in our Autoresponders. 


The first is that our write-in designation field is not displaying in the transaction summary. After multiple attempts with support, it was determined that it was an existing bug within the transaction summary/autoresponder. 


Secondly, our tribute/honorary name is not displaying in the transaction summary.


What I am looking for is anyone who has successfully created a custom transaction summary using s-tags in place of the default transaction summary. We do not want to pursue the PDF receipt route until we try this iteration of solution. Any suggestion would be helpful, even the list of s-tags that you worked with and the different permutations of gifts included in the summary.


Best, 

Tammi BurkhardtReporting Analyst

OHSU & DOERNBECHER FOUNDATIONS
1121 SW Salmon Street, Suite 100

Portland, OR 97205 

PH 503.412.6369 / EMAIL burkhata@ohsu.edu 

 
Tagged:

Comments

  • Hi Tammi -

    All the values of S120 can be found on the KB. Not having the background on the other designated giving things... here is what you could be after:

    [[S120:dc:designeeNames]]

    One option would be to conditionalize if the gift has been designated like so

    [[?xx::x[[S120:dc:designeeNames]]x::Insert Default Organziation Name here::[[S120:dc:designeeNames]]]]


    Here's the simpliest transaction summary can be:

    <table border="0" width="90%">
    <tbody>
    <tr>
    <td valign="top">
    <p class="FormLabelText">Title:</p>
    </td>
    <td>
    <p>[[S120:dc:title]]</p>
    </td>
    </tr>
    <tr>
    <td valign="top">
    <p class="FormLabelText">First Name:</p>
    </td>
    <td>
    <p>[[S120:dc:firstName]]</p>
    </td>
    </tr>
    <tr>
    <td valign="top">
    <p class="FormLabelText">Last Name:</p>
    </td>
    <td>
    <p>[[S120:dc:lastName]]</p>
    </td>
    </tr>
    <tr>
    <td valign="top">
    <p class="FormLabelText">Email:</p>
    </td>
    <td>
    <p>[[S120:dc:email]]</p>
    </td>
    </tr>
    <tr>
    <td valign="top">
    <p class="FormLabelText">Street 1:</p>
    </td>
    <td>
    <p>[[S120:dc:street1]]</p>
    </td>
    </tr>
    [[?xx::x[[S120:dc:street2]]x:: ::
    <tr>
    <td valign="top">
    <p class="FormLabelText">Street2:</p>
    </td>
    <td>
    <p>[[S120:dc:street2]]</p>
    </td>
    </tr>
    <tr>]]
    <td valign="top">
    <p class="FormLabelText">City:</p>
    </td>
    <td>
    <p>[[S120:dc:city]]</p>
    </td>
    </tr>
    <tr>
    <td valign="top">
    <p class="FormLabelText">State/Province:</p>
    </td>
    <td>
    <p>[[S120:dc:stateProvince]]</p>
    </td>
    </tr>
    <tr>
    <td valign="top">
    <p class="FormLabelText">Gift Amount:</p>
    </td>
    <td>
    <p>[[S120:dc:giftAmount]]</p>
    </td>
    </tr>
    <tr>
    <td valign="top">
    <p class="FormLabelText">Transaction ID:</p>
    </td>
    <td>
    <p>[[S120:dc:transactionID]]</p>
    </td>
    </tr>
    <tr>
    <td valign="top">
    <p class="FormLabelText">This organization's tax ID is:</p>
    </td>
    <td>
    <p><convio:session name="120" param="dc:taxID"></convio:session></p>
    </td>
    </tr>
    </tbody>
    </table>

     

Categories