Now here are the following ways I have used the calendar token in the past:
But now I have a strange issue. My company just started to use the modules so there is an image that needs to link to the same link as below, and wouldn't you know it the link is a calendar token. How would I reference the token information without duplicating it is there some kind of <a href> I could use so that I could anchor the link to the one that populates the token?
Solved! Go to Solution.
Also there needs to be a work around that you can reference an a href tag that appears lower on the page. I can't imagine that everyone goes to a third party to make it work each time.
This part isn't Marketo's fault: static HTML has no facility for applying the href of one tag to another tag. (You can reference one <A> from another <A> in the same document, but that is very different.)
Thread should be moved to Products methinks. ("Central" being for non-Marketo-specific marketing topics, as confusing as that is.)
You can't have two different types of special formatting for the same calendar token, so you'd need two tokens. Or you could use Agical.io and open your mind to much more.
Ya that is a bit confusing, given that this is a Marketing tool that is commonly used and I am trying to find out ways to adapt the code into difficult situations.
Also there needs to be a work around that you can reference an a href tag that appears lower on the page. I can't imagine that everyone goes to a third party to make it work each time.
Also there needs to be a work around that you can reference an a href tag that appears lower on the page. I can't imagine that everyone goes to a third party to make it work each time.
This part isn't Marketo's fault: static HTML has no facility for applying the href of one tag to another tag. (You can reference one <A> from another <A> in the same document, but that is very different.)
Thanks!
Ya that is a bit confusing, given that this is a Marketing tool that is commonly used and I am trying to find out ways to adapt the code into difficult situations.
Peer-to-peer support is under Products... that's just the way it is (or is supposed to be)! Otherwise half- or unanswered questions proliferate and the confusion gets worse.
I'd like to see the Marketo calendar token:
Agical.io looks useful, but it still requires the user to piece together and then properly encode the string, which is not great if we want to create a program that Marketing can just clone, populate tokens for (without encoding anything), and then launch.
For anyone looking to generate calendar links, Add Event (www.addevent.com) is one tool. The great thing about it is that you can create an event and it will generate a button for your site as well as Outlook, AppleCal, Google, Yahoo and Outlook.com links. All the calendar entries you create can be viewed and managed in one place. If you send out a link to a calendar that's incorrect, you can update it. Anyone can use it – the steps for creating an event are simple. Just fill out some fields. It does all the work for you. Also, there's an API.
The pricing is pretty reasonable too.
I'd really love to see improvements in Marketo though. That would be really helpful to us.
Agical.io looks useful, but it still requires the user to piece together and then properly encode the string, which is not great if we want to create a program that Marketing can just clone, populate tokens for (without encoding anything), and then launch.
Hey man, that's only because you didn't build a UI for it.
I'll get right on that.
We recently leveraged the API to read a {{my.capacity}} token we created in our event programs to close an event when the number of registrants reached that capacity. I guess the next thing will be to generate calendar links on the fly using the API and a program ID.
Or store the event info in an (editable) Velocity dictionary object token, then output the URL using another (no-touch) token.
my.vtl_eventinfo
#set( $event = {
"title" : "Group chat session",
"date" : "2017-03-15",
"time" : "05:00 EST",
"reminder" : "5m"
} )
my.vtl_eventlink
<a href="http://calendaring.example.com/?subject=${event.title}&startDate=${event.date} [... etc...]">Add to calendar</a>