SOLVED

Using Velocity Scripting with multiple instances of one variable

Go to solution
Anonymous
Not applicable

Using Velocity Scripting with multiple instances of one variable

Hello,

We are trying to use velocity scripting in a token in order to generate emails for abandoned shopping carts.

The below text is part of a token we can insert into emails, and the Shopping Cart is a custom object. This code works in our tests for giving the information for one product. However, we haven't been able to alter it to make it display information for multiple products. Even if we have multiple kinds of products loaded into the lead, we can't seem to figure out how to alter the script to reflect the below information for each product in the cart.

You left the following item in your shopping cart. Don't forget about it!

                <br>${shoppingCart_cList.get(0).itemDescription}

                <br>

                <br>${shoppingCart_cList.get(0).itemImageUrl}

                <br>

                <br> Price: ${esc.d}${shoppingCart_cList.get(0).itemPrice}

                <br>

                <br> Quantity: ${shoppingCart_cList.get(0).itemQuantity}

                <br>

                <br> Line Amount: ${esc.d}${shoppingCart_cList.get(0).extendedLineAmount}

Do we need to create multiple shopping cart/item variables to make this happen? For instance, having itemDescription2, itemImageUrl2, etc.? I tried experimenting with if statements and a foreach, but I'm a complete beginner, so even just some hints would be very helpful. I can't seem to find any research online to help me understand how I need to alter our script.

1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Using Velocity Scripting with multiple instances of one variable

Doesn't seem like a Velocity issue really.

${shoppingCart_cList.get(0) (it's more concise to use ${shoppingCart_cList[0]} by the way) is the first item in the list of shoppingCart objects. If that object is defined as having a single string property itemDescription, for example, then obviously you're only putting one item in there. There's nothing else for Velocity to access.

Rather than creating a bunch of additional properties like itemDescription2 (which will fail as soon as you have over n items and is painful to maintain) I would use a single text field, stored as a JSON array of objects, to represent the cart. Each item is an object; its description, URL, price, quantity, extended total are all properties of the object.

Or you could create item1, item2, item3 as separate text fields if you want (each holding a JSON object) bearing in mind the maintenance concern above.

View solution in original post

2 REPLIES 2
SanfordWhiteman
Level 10 - Community Moderator

Re: Using Velocity Scripting with multiple instances of one variable

Doesn't seem like a Velocity issue really.

${shoppingCart_cList.get(0) (it's more concise to use ${shoppingCart_cList[0]} by the way) is the first item in the list of shoppingCart objects. If that object is defined as having a single string property itemDescription, for example, then obviously you're only putting one item in there. There's nothing else for Velocity to access.

Rather than creating a bunch of additional properties like itemDescription2 (which will fail as soon as you have over n items and is painful to maintain) I would use a single text field, stored as a JSON array of objects, to represent the cart. Each item is an object; its description, URL, price, quantity, extended total are all properties of the object.

Or you could create item1, item2, item3 as separate text fields if you want (each holding a JSON object) bearing in mind the maintenance concern above.

Anonymous
Not applicable

Re: Using Velocity Scripting with multiple instances of one variable

Thanks so much!