Skip to main content

Activity

commented on Overriding the Unsubscribe
Hey Issa,

Could you contact our support team at [email protected] with a link to the specific profile where you can’t re-subscribe them?
posted 2015-10-12 14:16:02 -0700
commented on How do I create a page to for users to "spend political capitol"?
Hey Matthew,

A workaround to doing this could be having a certain page type that you aren’t currently using, and then configuring the political capital in Settings > Defaults > Political Capital to have an action on that page type subtract capitol from the person taking that action. You’d only be able to set a general number though, but it would allow you to have a page where a user could “spend” the capitol that they currently have.
posted 2015-10-12 13:56:41 -0700
commented on Donations API
Hey Susan,

You could use a donation custom field to do that! Here’s info on creating a custom donation field: http://nationbuilder.com/create_custom_donation_fields and here’s how to display the form on a donation page: http://nationbuilder.com/custom_donation_fields_on_donation_page.
posted 2015-10-12 13:46:00 -0700
commented on how to embed an audio file (mp3 or mp4) on nation builder...
Hey Donald, see the updates above to embed a Soundcloud player on a page.
posted 2015-10-12 13:23:37 -0700
commented on Displaying list of endorsements which are not featured
Hey Donald,

On an endorsement page you can make an endorsement featured(which means that it will be displayed in it’s own “Featured endorsements” section of endorsement page) by going into your Endorsement page’s “endorsement settings” and then selecting “endorsements”. You can then click the pencil icon next to an endorsement to edit it. Then, there’s a checkbox with the label “Feature this endorsement above the regular list” which allows you to make that endorsement featured.
posted 2015-10-12 13:05:11 -0700
commented on How do I reply to comments?
Matt,

I’ve attached a couple of screenshots above of the locations where you can respond to comments.

Bill,

Unfortunately, posting a comment and is the only way to currently reply to other existing comments. Having said that, when you post a comment on a page, everyone else who has posted a comment on the page will receive an email notification.
posted 2015-10-09 17:54:09 -0700
commented on Change Image that Shows Up on Social Media Platforms when sharing from website
Hey Dean, there actually isn’t currently a way to remove the image from your social share. I’d advise just changing back to your site logo, or making it a blank image.
posted 2015-10-09 17:30:49 -0700
commented on Text Message Signup WITHOUT reply asking for email address?
Hey Jean-Samuel,

Unfortunately we don’t currently support editing the autoresponder. Having said that, I’d definitely request this as a feature that you’d like to see. If it’s something that you’d really like to see I’d also share your request in our Facebook group to see if other users are interested in a similar feature.

Request a feature here: http://nationbuilder.com/suggest

Facebook group: https://www.facebook.com/groups/nationbuilder/
posted 2015-09-28 11:28:43 -0700
commented on page.calendar
Hey Luke,

It appears that all you can currently do is change the labels to SI units and not the actual distance displayed. I’d recommend that you submit your request as a feature request though! http://nationbuilder.com/suggest
posted 2015-09-24 16:56:05 -0700
commented on page
Hey Erika!

That’s a pretty cool liquid widget that you’ve created to change the styling based on the pages ancestor! It took me a second to figure this one out, but it looks like you were pretty much right on, the only issue was this bit here:
  {% for ancestor in page.ancestors %}
      {% assign top_parent = ancestor.slug %}
  {% endfor %}


For a page that is 2 levels deep in the hierarchy, it’s actually going to have 2 different ancestors. So the assign variable above was only capturing the last ancestor.slug it forlooped through, which was it’s immediate parent. Since {% for ancestor in page.ancestors %} starts with the highest page in the hierachy, you’ll just want to limit that forloop to just one. So if your code in your layout.html looks like the only below, it should work correctly now!
{% assign top_parent = page.slug %}
{% if page.has_parent? %}
  {% for ancestor in page.ancestors limit:1 %}
   {% assign top_parent = ancestor.slug %}
  {% endfor %}
{% endif %}


Let me know if you have any additional questions!
posted 2015-10-20 11:23:00 -0700
commented on page.blog
Hey Fredrick, I tried to test that out and I was only able to access posts that were actually published using page.blog.most_recent_blog_posts. Not sure why we’re seeing different results. You could link to the page that you’re trying to use it and I could take a look if you’re still interested!
posted 2015-10-12 19:02:28 -0700
commented on How can I add a summary to the top of a blog page?
Hey Civiane,

Are you looking to add just one blog post to the homepage, or several? You can try attaching the page tag “homepage” to have a a partial of your blog post appear on your homepage.
posted 2015-09-24 15:14:21 -0700