I am working on a site that displays a list of venues and would like to add a Foursquare 'save' button for each venue in the list. Is it possible to show multiple Foursquare 'save' buttons on a single page? I've tried creating multiple vCard blocks (one for each venue) and inserting a 'save' button in each block but the locations are not being picked up.

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

After inspecting the source of the widgets.js and widgets.asyncbundle.js I discovered that setting thedata-context atribute of the 'Save to Foursquare' button to the ID of the VCard will link these two. Like so:

<div id="hcard-Station-Amsterdam-Centraal" class="vcard">
    <span class="fn">
        <span class="given-name">Station Amsterdam Centraal</span>
    </span>
    <div class="adr">
        <div class="street-address">stationsplein 15</div>
        <span class="locality">Amsterdam</span>, 
        <span class="region">Amsterdam</span> , 
        <span class="postal-code">1012AB</span>
    </div>
</div>
<div id="hcard-Jaarbeursplein" class="vcard">
    <span class="fn">
        <span class="given-name">Jaarbeursplein</span>
    </span>
    <div class="adr">
        <div class="street-address">Jaarbeursplein</div>
        <span class="locality">Utrecht</span>, 
        <span class="region">Utrecht</span>, 
        <span class="postal-code">3521AL</span>
    </div>
</div>

<a href="https://foursquare.com/intent/venue.html" class="fourSq-widget" data-context="hcard-Station-Amsterdam-Centraal" data-variant="wide">Save to foursquare</a>
<a href="https://foursquare.com/intent/venue.html" class="fourSq-widget" data-context="hcard-Jaarbeursplein" data-variant="wide">Save to foursquare</a>

But for the fact that this isn't documented, it may be changed in the near future.

link|improve this answer
Be sure to use class="vcard" (not class="vCard" as in 4q documentation) – sglessard Feb 22 at 15:06
It worked nice for my blog. I have a list of places to visit and they are working nice now. Hope de 4sq team to build a better solution in the future like a hidden text field as the value of the text field been the URL of the venue. That could reduce a lot effort for the page authors. – David Feitosa Apr 27 at 2:04
feedback

The in-progress docs for the save-to-foursquare widget are accessible @ https://developer.foursquare.com/overview/widgets. They'll be cleaned up over time, but should be good enough to help this and future widget-related questions =).

In particular, documentation about the "data-context" attribute you need will be pushed to the linked page soon.

link|improve this answer
The documentation doesn't mention the data-context attribute for multiple buttons on a page, so referring to that and saying 'but should be good enough to help this and future widget-related questions' is not helping.. – Koen. Apr 2 at 15:22
The documentation will be updated soon to include that attribute – akdotcom Apr 5 at 17:56
Ok, didn't know you are working for 4sq, anyway, mentioning the documentation as a solution when you know that it doesn't cover the attribute is still misleading. Add to your answer that it will be described in the documentation soon and I will undo my downvote. – Koen. Apr 6 at 15:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.