In TAMARO you have two options in telling your donors what their donation will be used for:
1. Donation Purposes (only available with RaiseNow Gowth)
2. Descriptive text attached to each amount:
If you would like to opt for option number two and are subscribed to the RaiseNow Growth Plan - feel free to reach out to the Customer Success team to configure the texts for you. If you would want to be able to change these by yourself or you are subscribed to a RaiseNow Free plan you can use the code example below to add these texts to your widget:
<script>
window.rnw.tamaro.runWidget('.rnw-widget-container', {
translations: {
en: {
amount_descriptions: [
{
"if": "paymentType() == onetime",
"then": [
{
"if": "amount() == 50",
"then": "TEXT1"
},
{
"if": "amount() == 100",
"then": "TEXT2"
},
{
"if": "amount() == custom_amount",
"then": "TEXT3"
}
]
},
{
"if": "paymentType() == recurring",
"then": [
{
"if": "amount() == 150",
"then": "TEXT4"
},
{
"if": "amount() == 300",
"then": "TEXT5"
},
{
"if": "amount() == custom_amount",
"then": "TEXT6"
}
]
},
]
},
}
});
</script>
Comments
0 comments
Please sign in to leave a comment.