Skip to main content

Activity

commented on Birthday field in signup form?
Whoops, forgot to wrap my code! Let’s try that again:

I’ve noticed that putting the liquid representation doesn’t always work. Instead, I spell out the HTML verbatim and that does the trick:

<pre>Birth date

</pre>

From my experience though, this only works on the signup pages and the signups_edit partial.
posted 2015-08-07 07:39:40 -0700
commented on event_rsvp
There needs to be a variable for rsvp count PLUS guest count. It doesn’t make sense to have to get the rsvp count, then use Liquid to add the guest count going through the rsvp array one by one. Liquid doesn’t do math nicely.

Also, I assume pagination eventually comes into play, so you can actually count past a certain point in the RSVPs….
posted 2014-12-03 13:57:57 -0800
commented on donation
is_private does not work with a ? at the end of it. It should just be:
donation.is_private
posted 2014-06-26 08:06:30 -0700
commented on Pagination on the API returns different results in production vs. testing environments
And said announcement in my previous message is available here: http://nationbuilder.com/new_api_paging
posted 2014-12-09 20:59:04 -0800
commented on Can I slow down the speed of the featured slides?
Doesn’t look like this was fully answered, so here’s what I did:

I disabled NationBuilder’s initialization of flexslider by changing the _features.html classes and ids of “page-features” and “feature-slides” to custom ones (don’t forget to change them in the scss files as well!). Then, I inputted my own init custom script with the help of the http://www.woothemes.com/flexslider/ options: $(window).load(function() { $(‘#flex-feature-slides’).flexslider({ animation: “fade”, slideshowSpeed: 7000, animationSpeed: 600, prevText: "", nextText: "", start: function() { $(‘.slider-loading’).remove(); $(‘.flex-slides .slides’).css({"visibility": "visible"}); } }); });

The jquery in the “start” function is there to remove the loading gif and make all the slides visible when flexslider has fully initialized.
posted 2014-11-10 07:54:34 -0800
commented on site
Are all the variables that have link-throughs in the left-hand column supposed to go to the “page_variables” documentation? Broadcaster should go to “broadcaster” but it doesn’t, not sure about the other ones. Might want to fix those hyperlinks :)
posted 2014-05-07 10:40:25 -0700
commented on Events API
Which image Andrew?

If it’s a page attachment, you can grab it using the Page Attachment API: http://nationbuilder.com/page_attachments_api

If it’s the meta image, then no :(
posted 2015-05-25 08:05:06 -0700
commented on How can I easily share a personalized recruiter link with all of my supporters?
Tedford Archer asked this question a few months ago, but it looks like it was replied to privately. If the answer to his question could be supplied publicly, that would be really helpful to the rest of us.

To repeat the question verbatim:

I have included http://www.mydomain.com/?recruiter_id={{ recipient.id }} as suggested in a couple of email blast tests and never see the ID displayed, the URL always ends without the ID present. Has the functionality changed as described above?

Thanks!
posted 2014-04-28 10:00:20 -0700
commented on event_ticket_level
rsvps is not actually the number of rsvps, but rather an array of rsvp objects.
posted 2014-12-03 13:55:22 -0800