<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>KIMBIA &#187; Product Docs</title>
	<atom:link href="http://www.kimbia.com/category/d/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kimbia.com</link>
	<description>Giving Power</description>
	<lastBuildDate>Thu, 29 Jul 2010 22:44:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Form Widget v.2 and CSS Examples</title>
		<link>http://www.kimbia.com/d/widget2/</link>
		<comments>http://www.kimbia.com/d/widget2/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 11:10:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=229</guid>
		<description><![CDATA[**UPDATE**: As of the 6.23.2010 maintenance release, new HTML container elements have been added to the KIMBIA form widget. These new elements will facilitate more advanced form layouts via CSS and provide a more accurate method of styling. Any custom stylesheet that was written prior to these updates should continue to work as expected and no changes are necessary to accommodate these new elements. However, if you are applying custom styles to your KIMBIA form widget, we recommend reading the updated documentation and CSS examples.]]></description>
			<content:encoded><![CDATA[<p>
<br />
<strong>UPDATE</strong>: As of the 6.23.2010 maintenance release, new HTML container elements have been added to the KIMBIA form widget. These new elements will facilitate more advanced form layouts via CSS and provide a more accurate method of styling. Any custom stylesheet that was written prior to these updates should continue to work as expected and no changes are necessary to accommodate these new elements. However, if you are applying custom styles to your KIMBIA form widget, we recommend reading the updated documentation and CSS examples.
<br /><br />
With the release of our widget v2 or "short snippet", we have updated the documentation for configuring and customizing your KIMBIA forms.  The new documentation covers everything from understanding the "new" short snippet to applying custom styles.
<br /><br />
<strong>Highlights of the documentation:</strong>
<ul>
	<li>Understanding the New short 'snippet'</li>
	<li>Modifying the short 'snippet' configuration</li>
	<li>Appending the short 'snippet' manually</li>
	<li>Default behavior of the Kimbia form</li>
	<li>Applying custom styling</li>
	<li>Widget v2 HTML structure</li>
	<li>Example custom CSS styles</li>
</ul>
<p>
In response to many customer requests, we are very excited to present the example CSS styles.  While our forms are extremely flexible in how they are styled, this flexibility has left many wondering where to begin.  Now all you have to do is begin with one of the example style sheets and edit or tweak it from there - much easier than starting from scratch.
<br /><br />
A future post will be highlighting some customer examples, so if you would like your form or widget highlighted just let us know.
<br /><br />
<a href='http://www.kimbia.com/wp-content/uploads/2009/03/KIMBIA_widget_v2_6.23.10.pdf' class="pdf">KIMBIA widget v2 Documentation</a>
<a href='http://www.kimbia.com/wp-content/uploads/2009/03/KIMBIA_CSS_Examples.zip' class="zip">KIMBIA CSS Examples</a></p>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/widget2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I pre-fill contact information in KIMBIA forms?</title>
		<link>http://www.kimbia.com/qa/prefillcontactinfo/</link>
		<comments>http://www.kimbia.com/qa/prefillcontactinfo/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 16:07:53 +0000</pubDate>
		<dc:creator>maubin</dc:creator>
				<category><![CDATA[Product Docs]]></category>
		<category><![CDATA[Q & A]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=1741</guid>
		<description><![CDATA[Here are instructions describing how you can pre-fill the contact information in KIMBIA forms so your known user doesn't have to type it.]]></description>
			<content:encoded><![CDATA[<p><!--start_raw--></p>
<p>Are you a KIMBIA customer running an email donation or registration fundraising campaign and you already know your donor&#8217;s contact information? If you do and can uniquely identify the user when they load the page, you can pre-fill the contact information in KIMBIA forms so the user doesn&#8217;t have to type it.</p>
<p>Some examples of fields you can pre-fill:</p>
<ul>
<li>First Name</li>
<li>Last Name</li>
<li>Email</li>
<li>Street Address Line 1</li>
<li>Streed Address Line 2</li>
<li>City</li>
<li>State</li>
<li>Zipcode</li>
<li>Phone</li>
</ul>
<h3>How to Set Kimbia Contact Profile Values</h3>
<p><strong>1) Determine the question.name.</strong> Usually, this can be determined by loading the form and getting the name attribute of the input. Do not use other attributes.</p>
<p><img class="alignnone size-full wp-image-1809" style="border: 1px solid #ccc;" title="Field Names" src="http://www.kimbia.com/wp-content/uploads/2010/06/input_name.png" alt="" width="638" height="188" /></p>
<p>Put a Custom Function in the <code>&lt;head&gt;</code> of the web page, using JavaScript.</p>
<ol class="code">
<li><code>&lt;script type="text/javascript"&gt;</code></li>
<li class="tab1"><code>function prefill(widget) {</code></li>
<li class="tab2"><code>// do tasks here.</code></li>
<li class="tab1"><code>}</code></li>
<li><code>&lt;/script&gt;</code></li>
</ol>
<p><strong>2) In your Custom Function</strong>, add calls to the widget API to set desired answer values.</p>
<ol class="code">
<li><code>widget.setDefaultAnswerValueByQuestionName("questionName", "desired value"); </code></li>
</ol>
<p>Examples:</p>
<ol class="code">
<li><code>widget.setDefaultAnswerValueByQuestionName("FirstName", "Bart");</code></li>
<li><code>widget.setDefaultAnswerValueByQuestionName("_payment.firstName", "PayFirstNameTest");</code></li>
<li><code>widget.setDefaultAnswerValueByQuestionName("LastName", "Jones");</code></li>
<li><code>widget.setDefaultAnswerValueByQuestionName("ContactEmail", "bartjones@mailinator.com");</code></li>
<li><code>widget.setDefaultAnswerValueByQuestionName('MailingAddress|country', 'US');</code></li>
<li><code>//NOTE: when working with Addresses, set country first.</code></li>
<li><code>widget.setDefaultAnswerValueByQuestionName("MailingAddress|street1", "1234 Testing Avenue");</code></li>
<li><code>widget.setDefaultAnswerValueByQuestionName("MailingAddress|street2", "#2");</code></li>
<li><code>widget.setDefaultAnswerValueByQuestionName("MailingAddress|city", "Pleasantville");</code></li>
<li><code>widget.setDefaultAnswerValueByQuestionName("MailingAddress|state", "AL");</code></li>
<li><code>widget.setDefaultAnswerValueByQuestionName("MailingAddress|zipcode", "78704");</code></li>
<li><code>widget.setDefaultAnswerValueByQuestionName("Q4J3CDKWLGG", "555-555-5555,"); </code>
<p>***see notes below</li>
</ol>
<p><strong>3) Put your snippet in the BODY of the page</strong>. Add the <code>&amp;onload=</code> parameter to it that matches the name of your custom function.</p>
<p><code style="font-size: .9em;">&lt;script src="https://widgets.kimbia.com/widgets/form.js?channel=[CAMPAIGN_PREFIX]/[FORM_SUFFIX]&amp;onload=prefill"/&gt;<br />
</code></p>
<h3>NOTES:</h3>
<ul>
<li>When setting Address values, always set country first.</li>
<li>Field names may change from form to form for the items that are optionally added to Contact Information, like Title and Phone Numbers. So, don&#8217;t assume that &#8220;Phone&#8221; will always work as a randomly generated name is just as likely to be given to a field.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/qa/prefillcontactinfo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Progress Public, Part 3 of 3</title>
		<link>http://www.kimbia.com/d/make-progress-public-part-3-of-3/</link>
		<comments>http://www.kimbia.com/d/make-progress-public-part-3-of-3/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 14:08:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=1488</guid>
		<description><![CDATA[Part 3 of 3 provides a walkthrough of a model advocacy-based fundraising site and explains how to tie a registration form to your fundraiser.]]></description>
			<content:encoded><![CDATA[<p>
<h3>Configuring a time-based, goal-based, participatory fundraiser in Kimbia is a snap.</h3>
<strong>Part 3 of this simple guide explains how to:</strong>
<ol>
	<li>Define a specific, public financial goal and goal date for your campaign</li>
	<li>Enable your donors to also advocate and raise money for your campaign</li>
	<li>Publicly display campaign progress and the progress of individual advocates</li>
	<li>Track the performance of advocate supporters</li>
	<li><strong>Link a registration form to a donation form so that a new registrant is automatically signed up to raise money</strong></li>
	<li><strong>Review a demonstration site that can be used as a model for your campaign</strong></li>
</ol>
<h3><strong>Using a registration form to sign up new advocate fundraisers</strong></h3>
Kimbia registration forms can easily be linked to an individual donation form within your campaign.
<br /><br />
Anyone registering using a linked registration form is automatically registered as a new advocate for the designated fundraiser.
<br /><br />
Some common examples:
<ul>
	<li>Your organization hosts an annual gala, golf tournament or 5K fun run.  If you link the event registration form to the fundraiser, each new registrant will receive the fundraising tools described herein.</li>
	<li>You organization wishes to recruit advocates to drive a campaign.  In this case, you might create a simple registration form - it can include as little as just an email address.  Each person signing up with automatically receive fundraising tools.</li>
</ul>
After you’ve setup your registration form, linking the form to a fundraiser is easy.  Edit the<strong> Form Setting</strong> for your registration form and select the donation form that the registration form will distribute.
<img class="aligncenter size-full wp-image-1499" style="border: 1px solid #cccccc;" title="Making Progress Public - Distribute form" src="http://www.kimbia.com/wp-content/uploads/2010/04/17.png" alt="" width="557" height="306" />
<br /><br />
In this example, the registrant is simply providing contact information to sign up as an advocate.  They will only see payment screens if they chose to make an optional donation, otherwise, they’ll receive a registration confirmation and their advocacy tools in their inbox.
<br /><br />
<img class="aligncenter size-full wp-image-1498" style="border: 1px solid #cccccc;" title="Making Progress Public - Advocate Sign up" src="http://www.kimbia.com/wp-content/uploads/2010/04/16.png" alt="" width="483" height="524" />
<br /><br />
<h3><strong>Putting it all together ... the model Everybody advocacy site</strong></h3>
To view a live version of the campaign used in this example please visit:
<br /><br />
<a href="http://amhope.blogspot.com/">http://amhope.blogspot.com/</a>
<br /><br />
To try out these advocacy tools, visit the donate page and give a gift.  The fundraiser is in <strong>Test Mode</strong>, so you can complete a transaction with the fake credit card number:
<strong>4111 1111 1111 1111</strong>
and verification code:
<strong>123</strong>.
<br /><br />
Give yourself a gift or ask a friend do so to experience the whole process.
<br /><br />
This campaign site includes lots of good promotional text.  We welcome you to borrow any of our formats or text.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/make-progress-public-part-3-of-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Progress Public, Part 2 of 3</title>
		<link>http://www.kimbia.com/d/make-progress-public-part-2-of-3/</link>
		<comments>http://www.kimbia.com/d/make-progress-public-part-2-of-3/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 14:10:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=1480</guid>
		<description><![CDATA[Part 2 of 3 focuses on the donor and advocate experience in supporting your campaign as well as how you can track their progress.]]></description>
			<content:encoded><![CDATA[<p>
<h3>Configuring a time-based, goal-based, participatory fundraiser in Kimbia is a snap.</h3>
<strong>Part 2 of this simple guide explains how to:</strong>
<ol>
	<li>Define a specific, public financial goal and goal date for your campaign</li>
	<li>Enable your donors to also advocate and raise money for your campaign</li>
	<li>Publicly display campaign progress and the progress of individual advocates</li>
	<li><strong>Track the performance of advocate supporters</strong></li>
	<li>Link a registration form to a donation form so that a new registrant is automatically signed up to raise money</li>
	<li>Review a demonstration site that can be used as a model for your campaign</li>
</ol>
<h3><strong>How <span style="font-color: #698541;">Everybody Advocacy</span> works for donors and donor advocates</strong></h3>
Each time a donor donates to your campaign, they will see several options on the confirmation screen for viral or social promotion of the campaign.
<img class="aligncenter size-full wp-image-1504" style="border: 1px solid #cccccc;" title="Making Progress Public - Donation Confirmation Screen" src="http://www.kimbia.com/wp-content/uploads/2010/04/10-e1270140205421.png" alt="" width="626" height="314" />

Each donor will also receive an email with simple instructions on how to promote the campaign.
<img class="aligncenter size-full wp-image-1506" style="border: 1px solid #cccccc;" title="Making Progress Public - Donor Promotion Email" src="http://www.kimbia.com/wp-content/uploads/2010/04/8-e1270140432587.png" alt="" width="626" height="568" />

Donor advocates can email friends from the <strong>email</strong> button ...
<img class="aligncenter size-full wp-image-1472" style="border: 1px solid #cccccc;" title="Making Progress Public - Forwardable Email" src="http://www.kimbia.com/wp-content/uploads/2010/03/91-e1270094748705.png" alt="" width="626" height="566" />


... or post their personal link via Facebook or Twitter

Facebook post
<img class="aligncenter size-full wp-image-1509" style="border: 1px solid #cccccc;" title="Making Progress Public - Facebook Post" src="http://www.kimbia.com/wp-content/uploads/2010/04/11-e1270140598381.png" alt="" width="625" height="410" />

Donors following the link will be taken to a donation form personalized for that advocate.
<img class="aligncenter size-full wp-image-1469" style="border: 1px solid #cccccc;" title="Make Progress Public - Personalized Message" src="http://www.kimbia.com/wp-content/uploads/2010/03/61-e1270094403889.png" alt="" width="625" height="486" />

Donor advocates can also publish their fundraiser on a personal Web page or blog.
<img class="aligncenter size-full wp-image-1511" style="border: 1px solid #cccccc;" title="Making Progress Public - Advocate's Blog" src="http://www.kimbia.com/wp-content/uploads/2010/04/12-e1270140832226.png" alt="" width="626" height="586" />

On blogs or personal pages, the entire donation form is displayed and donors can complete the transaction without every leaving your advocate’s site.

It is important to note that your organization always controls the donation form centrally from the Kimbia control panel.  Anytime you change options in the control panel, all remote forms will change instantly.  When the campaign is over, all the remote forms will automatically turn off.

Each time a donor advocate gets a new gift, they will receive a follow up email letting them know who gave the gift with a handy link to send a <strong>thank you</strong> note via email.

Advocates will also get a status update on their fundraising progress and the progress of the overall campaign.  Each email update also includes further encouragement and tools for continuing the promotional effort.
<img class="aligncenter size-full wp-image-1512" style="border: 1px solid #cccccc;" title="Making progress Public - Donation Notification w/ hilights" src="http://www.kimbia.com/wp-content/uploads/2010/04/13_hilight.png" alt="" width="626" height="595" />

When a donor gives to an advocate, the advocate who encouraged the donation is recognized in their email receipt.
<img class="aligncenter size-full wp-image-1513" style="border: 1px solid #cccccc;" title="Making Progress Public - Donor Receipt with Advocate Name" src="http://www.kimbia.com/wp-content/uploads/2010/04/14_hilight.png" alt="" width="626" height="629" />
<h3><strong>Tracking your advocate’s progress via reporting and promoting further action</strong></h3>
Keeping up with your individual advocates during the campaign is easy.  One of the default reports in <strong>Data Management</strong> is <strong>Everybody Performance</strong> under <strong>Financial Transactions</strong>.

This report lists each advocate, their unique AdvocateId, the number of gifts they’ve received and the URL of the Web sites where they have received gifts.
<img class="aligncenter size-full wp-image-1516" style="border: 1px solid #cccccc;" title="Making Progress Public - Advocate Performance report" src="http://www.kimbia.com/wp-content/uploads/2010/04/15_callouts.png" alt="" width="626" height="171" />

Of course, it is always a great idea to email your best advocates to keep them motivated and thank them for their support.

AdvocateId is a standard field in reporting.  So, if you’re running a report to look at individual gifts to the campaign, you can add this field to see which gifts were given due to advocate activity.

Also, AdvocateId can be exported the same way that email addresses can be exported.  This is useful for several purposes, including:
<ol>
	<li>Sending follow up emails to your advocates to encourage them to start fundraising or continue fundraising.</li>
	<li>Embedding the AdvocateId in emails sent from your regular email application so you'll be able to track gifts that come from promotional activities, such as email forwarding.</li>
	<li>Adding AdvocateIds to future campaigns.  Even if the donor advocate has not interacted with that campaign you can attach their AdvocateId to a donation form URL and track their promotional activity.</li>
</ol>
In <a href="http://www.kimbia.com/d/make-progress-public-part-3-of-3/">Part 3</a>, we’ll provide a walkthrough of a model advocacy-based <strong>fundraising</strong> site and explain how to tie a registration to your fundraiser.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/make-progress-public-part-2-of-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Progress Public, Part 1 of 3</title>
		<link>http://www.kimbia.com/d/make-progress-public-part-1-of-3/</link>
		<comments>http://www.kimbia.com/d/make-progress-public-part-1-of-3/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 21:36:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=1447</guid>
		<description><![CDATA[Configuring a time-based, goal-based, participatory fundraiser in Kimbia is a snap. This first in a series of 3 articles will get you on the road to successful fundraising in no time at all.]]></description>
			<content:encoded><![CDATA[<p>
<h3>Configuring a time-based, goal-based, participatory fundraiser in Kimbia is a snap.</h3>
<strong>What you'll learn about in Part 1 of this guide:</strong>
<ol>
	<li><strong>Define a specific, public financial goal and goal date for your campaign</strong></li>
	<li><strong>Enable your donors to also advocate and raise money for your campaign</strong></li>
	<li><strong>Publicly display campaign progress and the progress of individual advocate</strong></li>
	<li>Track the performance of advocate supporters</li>
	<li>Link a registration form to a donation form so that a new registrant is automatically signed up to raise money</li>
	<li>Review a demonstration site that can be used as a model for your campaign</li>
</ol>
<h3><strong>Step 1 - Create a new campaign</strong></h3>
Create your campaign and enter a <strong>Goal Date</strong> and <strong>Goal Amount</strong>.
<img class="aligncenter size-full wp-image-1476" style="border: 1px solid #cccccc;" title="Making Progress Public - Campaign Goal &amp; Date" src="http://www.kimbia.com/wp-content/uploads/2010/03/0.png" alt="" width="626" height="313" />
<br /><br />
The <strong>Goal Amount</strong> and <strong>Goal Date</strong> display as countdowns in the progress widget.
<img class="aligncenter size-full wp-image-1464" style="border: 1px solid #cccccc;" title="Make Progress Public - Progress Bar" src="http://www.kimbia.com/wp-content/uploads/2010/03/21.png" alt="" width="254" height="186" />
<br /><br />
<h3><strong>Step 2 - Create new donation forms</strong></h3>
When you are creating each of your donation forms within the campaign, turn on <strong>Make Progress Public</strong>.
<img class="aligncenter size-full wp-image-1463" style="border: 1px solid #cccccc;" title="Make Progress Public - Form Progress Public" src="http://www.kimbia.com/wp-content/uploads/2010/03/16-e1270093651410.png" alt="" width="626" height="73" />
<br /><br />
Every donation form within the campaign that has <strong>Make Progress Public</strong> turned <strong>'On'</strong> will contribute to the total reported by the progress widget.
<br />
<em>Note: It is possible to exclude some forms from the campaign total by leaving <strong>Make Progress Public</strong> set to <strong>Off</strong>.  It is also possible to configure a progress widget to point to a specific form.  That's why forms also have a <strong>Goal</strong> setting.</em>
<br /><br />
Two things occur when <strong>public progress</strong> is turned on.
<br /><br />
First, <strong>progress to goal</strong> will be displayed in any progress widgets attached to this campaign ... (<a href="#progressWidget">more on this below &raquo;</a>)
<br />
<img src="http://www.kimbia.com/wp-content/uploads/2010/04/2_hilight.png" alt="" title="Make Progress Public - Progress Widget w/ hilight" width="254" height="186" class="alignnone size-full wp-image-1568" />
<br /><br />
Second, when your donors become advocates and convince their friends to donate, they’ll get an email updating them on their personal fundraising progress and the progress of the overall campaign ... (<a href="#advUpdateEmail">more on this below &raquo;</a>)
<img src="http://www.kimbia.com/wp-content/uploads/2010/04/3_hilight.png" alt="" title="Make Progress Public - Advocate Update Email w/ hilights" width="626" height="551" class="alignnone size-full wp-image-1569" />
<br /><br />
<h3><strong>Step 3 - Form Settings edit Everybody Setting</strong></h3>
When creating each donation form, go to <strong>Form Settings</strong> and edit your <strong>Everybody Settings</strong> by turning <strong>Everybody</strong> On.  Enter the URL where your donation form is hosted.
<img class="aligncenter size-full wp-image-1468" style="border: 1px solid #cccccc;" title="Make Progress Public - Everybody Settings" src="http://www.kimbia.com/wp-content/uploads/2010/03/51.png" alt="" width="573" height="338" />
<br /><br />
<h3><strong>Step 4  - Form Settings edit Advocacy Settings</strong></h3>
Another step...<br /><br />
In <strong>Form Settings</strong> ... edit <strong>Advocacy Settings</strong>.
<br /><br />
<strong>First,</strong> edit the <strong>Personalized Message</strong>.  This message displays when an advocate donor sends a friend back to the donation page.
<img class="aligncenter size-full wp-image-1469" style="border: 1px solid #cccccc;" title="Make Progress Public - Personalized Message" src="http://www.kimbia.com/wp-content/uploads/2010/03/61-e1270094403889.png" alt="" width="625" height="486" />
<br /><br />
<img class="aligncenter size-full wp-image-1470" style="border: 1px solid #cccccc;" title="Making Progress Public - Donation Page" src="http://www.kimbia.com/wp-content/uploads/2010/03/71.png" alt="" width="591" height="526" />
<br /><br />
<a name="advUpdateEmail"></a><strong>Second</strong>, edit the <strong>Advocacy email</strong> header and footer. Whenever a donor gives to this form, he or she will automatically receive instructions about how to help promote the campaign.  The instructions will arrive in an email sent as the same time as their receipt.
<img class="aligncenter size-full wp-image-1471" style="border: 1px solid #cccccc;" title="Making Progress Public - Advocacy Email" src="http://www.kimbia.com/wp-content/uploads/2010/03/81-e1270094647280.png" alt="" width="625" height="568" />
<br /><br />
If If the advocate clicks the <strong>email</strong> button, the advocacy email will be queued up so they can easily send it to friends.
<img class="aligncenter size-full wp-image-1472" style="border: 1px solid #cccccc;" title="Making Progress Public - Forwardable Email" src="http://www.kimbia.com/wp-content/uploads/2010/03/91-e1270094748705.png" alt="" width="626" height="566" />
<br /><br />
<h3><strong><a name="progressWidget"></a>Step 5 - Install a progress tracker widget next to your donation form</strong></h3>
Installing the progress tracker is as simple as installing a Kimbia donation widget.
<br /><br />
The code for the widget is always:
<code style="display: block; background-color: #eee; border: 1px solid #999; padding: 6px;">&lt;script src="https://widgets.kimbia.com/widgets/executor/statusBar?campaign=[campaign_prefix].kimbia.com"&gt;&lt;/script&gt;</code>
<br /><br />
Copy and paste the progress widget on your organization's home page or the front page of the campaign web site.
<br /><br />
The progress tracker should also be placed on the donation page.  Placing the tracker on the donation pages display the progress of the campaign to anyone considering a gift.  More importantly, when an advocate sends a friend to the donation page, the tracker will display the advocate’s progress.
<br /><br />
The tracker can be placed above the donation form, but it can also be pasted into a nearby column.
<img class="aligncenter size-full wp-image-1473" style="border: 1px solid #cccccc;" title="Make Progress Public - Campaign Progress" src="http://www.kimbia.com/wp-content/uploads/2010/03/72.png" alt="" width="591" height="526" />
<br /><br />
If a donor is sent to the page by an advocate, they will see the advocate’s individual progress instead the campaign’s progress.
<img class="aligncenter size-full wp-image-1469" style="border: 1px solid #cccccc;" title="Make Progress Public - Personalized Message" src="http://www.kimbia.com/wp-content/uploads/2010/03/61-e1270094403889.png" alt="" width="625" height="486" />
<br /><br />
For more information on installing and styling your progress widget, see our blog post:
<a href="http://www.kimbia.com/d/installing-customizing-status-widget/">Installing &amp; Customizing your Status widget</a>
<br /><br />
In <a href="http://www.kimbia.com/d/make-progress-public-part-2-of-3/">Part 2</a>, you will learn about the donor experience and about the advocate experience.  You'll also learn how to use reporting to track advocates.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/make-progress-public-part-1-of-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release Notes 3.29.2010</title>
		<link>http://www.kimbia.com/d/release-notes-3-29-2010/</link>
		<comments>http://www.kimbia.com/d/release-notes-3-29-2010/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 23:32:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Product Docs]]></category>
		<category><![CDATA[Release Notes]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=1386</guid>
		<description><![CDATA[This release includes a new locking feature to help KIMBIA Administrators maintain more control over the Campaign configurations, two new Campaign goal settings and the ability to process refunds for IATS payment processor.]]></description>
			<content:encoded><![CDATA[<p><br />
With this release, KIMBIA addresses three concerns for Administrators using the Control Panel. This release includes a new locking feature to help KIMBIA Administrators maintain more control over the Campaign configurations, two new Campaign goal settings and the ability to process refunds for IATS payment processor.
<br /><br />
<a class="pdf" href='http://www.kimbia.com/wp-content/uploads/2010/03/kimbia_releasenotes_20100329.pdf'>KIMBIA Release Notes 3-29-2010</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/release-notes-3-29-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing &amp; Customizing your KIMBIA Advocate Look-up Widget</title>
		<link>http://www.kimbia.com/d/installing-customizing-your-kimbia-advocate-look-up-widget/</link>
		<comments>http://www.kimbia.com/d/installing-customizing-your-kimbia-advocate-look-up-widget/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 16:57:55 +0000</pubDate>
		<dc:creator>maubin</dc:creator>
				<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=1256</guid>
		<description><![CDATA[KIMBIA’s new Advocate Look-up widget allows potential donors to locate a personalized donation form for an existing individual fundraising Advocate. It can be styled to match the look and feel of your website.]]></description>
			<content:encoded><![CDATA[<p>
<br />
Are you a KIMBIA customer running an Advocacy-based fundraising campaign? Have you challenged your supporters and athletes to raise funds on behalf of your organization? <br/><br/>

Our Advocate Look-up widget allows your web site visitors to more easily support their friends by entering their name or email address. Now, they don't have to remember or find that old email with a personalized URL from their friend.  They can just visit your website and look their friend up!
<br/><br/>
<img src="http://www.kimbia.com/wp-content/uploads/2010/02/lookupWidget_mockup.png" alt="Advocate Look-up (default styling)" title="Advocate Look-up (default styling)" width="259" height="377" align="left" style="margin-right: 20px;" /> After an Advocate's information is submitted, the Look-up widget will either send the user to that Advocate's personalized donation form, or it will ask the user to choose the correct advocate from a list of potential matches.
<br/><br/>
This post covers:
</p>
<ul>
    <li><a href="#snippet_install">Installing the snippet for the Look-up widget</a></li>
    <li><a href="#css">Customizing your Look-up widget with CSS</a></li>
</ul>
<hr style="clear: both;"><br/>
<a name="snippet_install"></a>
<h3>Installing the Advocate Look-up Widget</h3>
<p>Simply paste the following code into the HTML page you wish to display the Advocate Look-up widget:<br />
<code style="font-size:.9em;">&lt;script src="https://widgets.kimbia.com/widgets/executor/advocateLookup?campaign=[CampaignPrefix].kimbia.com"&gt;&lt;/script&gt;</code><br /><br />
Make sure you replace [campaign_prefix] with the actual prefix of your campaign listed in the 'Hosted Page' address on the <strong>Campaign Details</strong> page shown below:
<img src="http://www.kimbia.com/wp-content/uploads/2009/07/picture-29.png" alt="" title="Campaign Details - Campaign prefix" width="640" height="190" class="alignnone size-full wp-image-727"  style="border:1px solid #cccccc"/>
<br /><hr /><br />
<a name="css"></a><h3>Customizing your Advocate Look-up widget with CSS</h3>
We think our Advocate Look-up widget looks great out-of-the-box. But, if you would like to edit its look and feel, please be our guests. Using the custom CSS template below, you can easily adjust the default look and feel to match your existing HTML.
<br /><br />
As always, customizing the CSS is optional. If you do choose to create a custom CSS file:<br />
1) you're responsible for hosting this file on your website<br />
2) only include the style attributes from the following template that you wish to override. Placing null value attributes in your declarations will cause your styling to break in unexpected ways!
<br /><br />
<a class="css" href='http://www.kimbia.com/wp-content/uploads/2010/02/custom_advocateLookup.css'>KIMBIA Advocate Lookup Widget Custom CSS template</a>
<br />
The following image gives provides a visualization of the HTML elements available for styling and how the markup relates to the rendered widget:
<img src="http://www.kimbia.com/wp-content/uploads/2010/02/lookupWidget_codeMockup.png" alt="Look-up widget Code Mockup" title="Look-up widget Code Mockup" width="750" height="519" class="alignnone size-full wp-image-1274"  style="border:1px solid #cccccc" / />
</p>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/installing-customizing-your-kimbia-advocate-look-up-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kimbia Reporting Guide</title>
		<link>http://www.kimbia.com/d/kimbia-reporting-guide/</link>
		<comments>http://www.kimbia.com/d/kimbia-reporting-guide/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 22:02:50 +0000</pubDate>
		<dc:creator>maubin</dc:creator>
				<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=1098</guid>
		<description><![CDATA[The KIMBIA Reporting Guide is a primer on how to generate real time reports that analyze the data you collect with KIMBIA forms. This quick reference guide will show you how to build a report, provide definitions of data terms and concepts, and how to work with specific data types.]]></description>
			<content:encoded><![CDATA[<p><br />
Successful online fundraising and event registrations always leads to the need to generate reports and analyze all the great information that is gathered in the process of securing those valued donations and registrations. As our clients know, their data is valuable and KIMBIA's reporting features make it all readily available - in real time. These immediate access reports are enabling KIMBIA customers to more effectively achieve their business objectives and answer their pressing questions, for example:
<ul>
<li>Need to produce a report of all donations and refunds for October for Accounting? <b>Check</b></li>
<li>Need to provide your T-Shirt vendor with a real-time view of shirt orders for that event? <b>Check</b></li>
<li>Need to understand which Advocate is generating the most money? <b>Check</b></li>
<li>Want to keep tabs on how much has been collected today, yesterday, this week, or last month? <b>Check</b></li>
<li>Does your Executive Director want to be notified when "high dollar" donations are received? <b>Check</b></li>
</ul>
<br />
The following PDF contains the following to help you quickly build better, more useful reports:
<ol>
<li>A report selection guide - to help you understand how to select report types and templates</li>
<li>A review of the Report Build Screen - to help you understand how to build and configure your reports, including adding
forms, setting the report format and columns, filtering, and defining summaries (totals and subtotals).</li>
<li>A glossary of the terms and concepts available in KIMBIA Reporting - organized by Category, to help you identify the
available columns, what they are, and where to find them.</li>
<li>An explanation of common KIMBIA Data Types - to help you understand what they are and how you can use them to
achieve the report output you want.</li>
</ol>
<p>
<a class="pdf" href="http://www.kimbia.com/wp-content/uploads/2009/12/Kimbia-Reporting-How-To-v1_01.pdf">Reporting How To Guide</a></p>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/kimbia-reporting-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>11.30.2009 Release Notes</title>
		<link>http://www.kimbia.com/d/kimbia-release-notes-11-30-2009/</link>
		<comments>http://www.kimbia.com/d/kimbia-release-notes-11-30-2009/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 23:56:24 +0000</pubDate>
		<dc:creator>maubin</dc:creator>
				<category><![CDATA[Product Docs]]></category>
		<category><![CDATA[Release Notes]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=1054</guid>
		<description><![CDATA[With this release, KIMBIA introduces a new single page form tally table to show donors and registrants the amount being charged prior to completing the transaction. Additionally, Fundraiser Forms are now Donation Forms and Event Forms are now Registration Forms.]]></description>
			<content:encoded><![CDATA[<p>
The November 30 release of KIMBIA improves usability for administrators and end users alike.  This release introduces a new tally table feature to help donors and registrants preview charges on a single page form as well as improved Control Panel terminology to make things simpler for the KIMBIA administrator. Please review the following document to learn more...

<a class="pdf" href="http://www.kimbia.com/wp-content/uploads/2009/11/Release-Notes-20091130.pdf">Release Notes - November 30, 2009</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/kimbia-release-notes-11-30-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>11.09.2009 Release Notes</title>
		<link>http://www.kimbia.com/d/release-notes/11092009-release-notes/</link>
		<comments>http://www.kimbia.com/d/release-notes/11092009-release-notes/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 00:25:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Release Notes]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=945</guid>
		<description><![CDATA[The November 9 release of KIMBIA improves the usability of the KIMBIA reporting engine with a report selection guide and an updated color scheme.]]></description>
			<content:encoded><![CDATA[<p>
<br />
The November 9 release of KIMBIA improves the usability of the KIMBIA reporting engine with a report selection guide and an updated color scheme. Please review the following document to learn more...
<br/>
<a class="pdf" href="http://www.kimbia.com/wp-content/uploads/2009/11/release-notes-20091109.pdf">Release Notes - November 9, 2009</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/release-notes/11092009-release-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring automatic additional fees</title>
		<link>http://www.kimbia.com/d/automatic-additional-fees/</link>
		<comments>http://www.kimbia.com/d/automatic-additional-fees/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 18:20:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=923</guid>
		<description><![CDATA[Many KIMBIA customers provide premium items along with donations which have associated fulfillment costs.  Similarly, customers setting up events may need to add additional fees based on the participant's selected registration type. It is easy to add these fees in KIMBIA and, importantly, tie different fees to different donation levels or registration types.]]></description>
			<content:encoded><![CDATA[<p><br />
Many KIMBIA customers provide premium items along with donations which have associated fulfillment costs.  Similarly, customers setting up events may need to add additional fees based on the participant's selected registration type.
<br /><br />
It is easy to add these fees in KIMBIA and, importantly, tie different fees to different donation levels or registration types.
<br /><br />
In this example, a KIMBIA administrator is configuring a donation form with two gift options with associated premiums and two gift options without premiums.  KIMBIA fundraising applications can be configured to charge additional fees unique to each premium item and not add additional fees if a straight gift is selected.
<br /><br />
<strong>Step 1</strong><br />
In the Question Library, create a multiple choice single response question but add only one response.<br />
<img src="http://www.kimbia.com/wp-content/uploads/2009/11/auto_addlfees1.png" alt="" title="auto_addlfees1" width="499" height="448" class="alignnone size-full wp-image-925" /><br />
Now repeat the same process and create another question for the other premium item.
<br /><br />
<strong>Step 2</strong><br />
Create a new fundraiser and add donation levels.
<img src="http://www.kimbia.com/wp-content/uploads/2009/11/auto_addlfees2.png" alt="" title="auto_addlfees2" width="500" height="114" class="alignnone size-full wp-image-926" />
<br /><br />
<strong>Step 3</strong><br />
In Donation Questions, add the two questions you created.  Edit the questions, making them required, and inputing the additional amount to be added.
<img src="http://www.kimbia.com/wp-content/uploads/2009/11/auto_addlfees3.png" alt="" title="auto_addlfees3" width="500" height="388" class="alignnone size-full wp-image-927" /><br /><br />
<img src="http://www.kimbia.com/wp-content/uploads/2009/11/auto_addlfees4.png" alt="" title="auto_addlfees4" width="500" height="387" class="alignnone size-full wp-image-929" />
<br /><br />
<strong>Step 4</strong><br />
Back on the donation questions screen, click on the "Asked for all donation levels" link below each question and specify the donation level associated with the additional fee question.<br />
<img src="http://www.kimbia.com/wp-content/uploads/2009/11/auto_addlfees5.png" alt="" title="auto_addlfees5" width="500" height="204" class="alignnone size-full wp-image-931" />
<br /><br />
That's it.  With this configuration, any donor selecting one of the premium items will automatically see an additional amount automatically added, so the payment screen will look like this.<br />
<img src="http://www.kimbia.com/wp-content/uploads/2009/11/auto_addlfees6.png" alt="" title="auto_addlfees6" width="500" height="469" class="alignnone size-full wp-image-932" style="border:1px solid #cccccc" />
<br /><br />
If the donor selects the other premium item, the other fee will be added.  If they donor chooses the non-premium donation and elects to specify and donation amount, no additional fee will be added.
<br /><br />
As we mentioned at the top, the process is exactly the same for adding additional fees to specific registration types.  For example, if a race is being conducted by a running club, the club might add a "one day membership fee" for non-members participating in the event.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/automatic-additional-fees/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KIMBIA Payment Gateway Setup</title>
		<link>http://www.kimbia.com/partners/kimbia-payment-gateway-setup/</link>
		<comments>http://www.kimbia.com/partners/kimbia-payment-gateway-setup/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 21:00:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Partners]]></category>
		<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=389</guid>
		<description><![CDATA[<strong>UPDATE 10/23/09</strong> KIMBIA supports a number of internet payment gateways. By tying directly into your gateway account, you receive the money once the charge has been processed. See our list of supported gateways.]]></description>
			<content:encoded><![CDATA[<p>
<strong>UPDATE 5/10/10:</strong> We've updated our Payment Gateway Setup document with updated gateways and instructions.

KIMBIA supports a number of internet payment gateways.  The attached PDF lists compatible payment gateways and the details the information we need for each when setting up an instance of KIMBIA.

KIMBIA connects directly with a customer’s payment gateway account. By tying directly into your gateway account, you receive the money once the charge has been processed.

<strong>NOTE: Recurring payments are only supported through Sage Payment Solutions and IATS.</strong>

<a class="pdf" href="http://www.kimbia.com/wp-content/uploads/2009/10/gateways_100511.pdf">KIMBIA Payment Gateway Setup</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/partners/kimbia-payment-gateway-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Question: what size should my form widget be?</title>
		<link>http://www.kimbia.com/d/form-widget-size/</link>
		<comments>http://www.kimbia.com/d/form-widget-size/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 14:58:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=681</guid>
		<description><![CDATA[

By default, the KIMBIA form widget is designed to work in areas of 180px to 600px
In terms of KIMBIA best practices,  we recommend the following guidelines ...

More space equals more moneyThe smaller it is, or the less it is featured, the less it will be used.
Big enough for what you want to doe.g. bigger [...]]]></description>
			<content:encoded><![CDATA[<p>
<br />
By default, the KIMBIA form widget is designed to work in areas of 180px to 600px
In terms of KIMBIA best practices,  we recommend the following guidelines ...
<ol>
<li><strong>More space equals more money</strong><br />The smaller it is, or the less it is featured, the less it will be used.</li>
<li><strong>Big enough for what you want to do</strong><br />e.g. bigger than your video player/images etc. that will be embedded in the form.</li>
<li><strong>Some points of reference about widths on the web</strong><br />
- 625 pixels is the default central column size on Blogger<br />
- 425 pixels is the default size of an embedded YouTube video or Google map<br />
&nbsp;&nbsp;These are both comfortable presentation sizes.</li>
<li><strong>Below 300 pixels it starts to get too small</strong><br />better than nothing but significantly less used than wider forms.</li>
</ol>

<h4>Placing a widget in a Sidebar</h4>
When first evaluating where to install your widget, you may find it convenient to place your widget on every page of your website by placing it in the sidebar of a page template. Beware: depending on the existing content in the sidebar, this may <em>work against</em> your fundraising/registration goals.
<br /><br />
If your sidebar currently contains items that are unrelated to the content of the page (links to external websites, ads, promotional items etc.) our experience shows that your existing web users will consider any new items in the sidebar also be unrelated, and therefore <em>not</em> a focal point.
<br /><br />
If the sidebar is the only viable solution, we strongly recommend:
<ul>
    <li>customizing the look and feel of your form through a <a href="http://www.kimbia.com/d/widget2/">custom CSS stylsheet</a> that allows your form widget to stand out from other sidebar items</li>
    <li>Placing the form at the top of the sidebar and hopefully 'above the fold' so it will grab your visitor's attention</li>
</ul>


</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/form-widget-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrating KIMBIA form widget data with Google Analytics</title>
		<link>http://www.kimbia.com/d/form-widget-data-google-analytics/</link>
		<comments>http://www.kimbia.com/d/form-widget-data-google-analytics/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 05:19:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=882</guid>
		<description><![CDATA[Want to have KIMBIA form widget data integrated into your Google analytics reports? Easy. Recent upgrades to Google Analytics' feature set allow organizations to track much more than simple page views. New tracking options such as funnel/goals, event tracking and ecommerce transactions can easily accept data input from a KIMBIA form widget. Read more &#187;]]></description>
			<content:encoded><![CDATA[<p><br />
For many of our customers, the successful submission of a KIMBIA form widget represents the end of a very important chain of events. For others, its a very important step that may initiate other related actions. Over the past months we've encountered a variety of questions about website analytics and the KIMBIA form widget:
<ul>
    <li>What is my online donor conversion rate - web viewer to donation/registration?</li>
    <li>What paths are people taking through my website to reach my donation/registration forms?</li>
    <li>Which paths through my website generate more donations/registrations than others?</li>
    <li>Can I gauge how good is my message to get people to fill out the form?</li>
    <li>I have a Google AdWords campaigns... can I track a Kimbia transaction as an eCommerce transaction to measure the efficiency of my campaigns?</li>
</ul>
Google Analytics is a robust and affordable (as in free) web analytics package. Its easy to configure and install, and is the analytics tool of choice for this website. Recent upgrades to its feature set allow organizations to track much more than simple page views. The following Google Analytics tracking options can can accept data input from the KIMBIA form widget:
<ol>
    <li>page views in a funnel towards a defined goal on the organization website</li>
    <li>events that occur within third party apps installed on a web page (flash movies, widgets  etc.)</li>
    <li>ecommerce transactions that can be tied into an existing Google AdWords campaign</li>
</ol>
The follwoing PDF outlines what steps need to be taken to get form submission data into Google Analytics:
<a class="pdf" href="http://www.kimbia.com/wp-content/uploads/2009/10/ga_kimbia.pdf">Integrating KIMBIA form widget data with Google Analytics</a>
<br /><br />
<small><em>*NOTE:  This configuration only applies to KIMBIA form widgets running on the same domain address as the Google Analytics package. Form widgets installed on third party domains cannot 'share' their data to a Google Analytics package installed on a different domain.</em></small>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/form-widget-data-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making your web pages Facebook Friendly</title>
		<link>http://www.kimbia.com/d/facebook-friendly-web-pages/</link>
		<comments>http://www.kimbia.com/d/facebook-friendly-web-pages/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 17:00:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=856</guid>
		<description><![CDATA[Enabling KIMBIA's embedded Sharing links allows your donors/registrants to easily share the web address of the KIMBIA form on your website with the most popular online social networks, including Facebook. Learn the best way to ensure that your website, fundraiser and/or event are correctly represented when a link is added to an individual's Facebook profile page.]]></description>
			<content:encoded><![CDATA[<p>
<br />
Enabling KIMBIA's embedded Sharing links allows your donors/registrants to easily share the web address of the KIMBIA form on your website with the most popular online social networks: Facebook, Twitter and LinkedIn.
<br /><br />
Facebook, in particular, provides your organization an easy way to ensure that your web page, fundraiser and/or event are correctly represented when a link is added to an individual's Facebook profile page.
<br /><br />
By taking advantage of three very common (but often overlooked) HTML<pre><meta></pre> tags, your website can ensure that the correct title, description and image are included in Facebook's preview of your web page.
<br /><br />
To learn how, go here: <a href="http://www.facebook.com/share_partners.php#making_preview_work">Facebook: Making Sure the Preview Works</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/facebook-friendly-web-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>09.21.2009 Release Notes</title>
		<link>http://www.kimbia.com/d/release-notes/09212009-release-notes/</link>
		<comments>http://www.kimbia.com/d/release-notes/09212009-release-notes/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 21:54:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Release Notes]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=826</guid>
		<description><![CDATA[The September release includes a number of significant enhancements and a couple of important changes. Please review the PDF document attached to this post to learn more.]]></description>
			<content:encoded><![CDATA[<p>
<br />
The September release includes a number of significant enhancements and a couple of important changes.
Highlights include:
<ul>
	<li>NEW: Configurable Donor Specified Amount Label</li>
	<li>NEW: Form Labels</li>
	<li>NEW: Reporting Enhancements<br />
              -&nbsp;Empty Forms Now Available<br />
              -&nbsp;Discount Amount Column Now Available in Reports<br />
              -&nbsp;All Campaigns/Forms Reports Available
        </li>
	<li>NEW: Messaging Profiles</li>
        <li>CHANGE: Sharing Links default Setting to 'YES'</li>
        <li>CHANGE: Everybody default Setting to 'NO'</li>
</ul>
Please review the following document to learn more...
<a class="pdf" href="http://www.kimbia.com/wp-content/uploads/2009/09/kimbia_releasenotes_20090921.pdf">Release Notes - September 21, 2009</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/release-notes/09212009-release-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing your KIMBIA form widget &#039;snippet&#039;</title>
		<link>http://www.kimbia.com/d/installing-kimbia-form-snippet/</link>
		<comments>http://www.kimbia.com/d/installing-kimbia-form-snippet/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 05:37:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=813</guid>
		<description><![CDATA[The form widget is the heart of any KIMBIA powered fundraising effort. Installing a form widget 'snippet' is, quite literally, as easy as copy &#038; paste.]]></description>
			<content:encoded><![CDATA[<p>
<br />
The form widget is the heart of any KIMBIA powered fundraising effort. Installing a form widget 'snippet' is, quite literally, as easy as copy & paste.
<br /><br />
The following PDF outlines how to install this single line of code in the following places:
<ul>
  <li>standard HTML (including CMS)</li>
  <li>Blogger</li>
  <li>WordPress</li>
  <li>TypePad</li>
</ul>
<a class="pdf" href='http://www.kimbia.com/wp-content/uploads/2009/08/kimbia_snippetinstall.pdf'>KIMBIA Snippet Install</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/installing-kimbia-form-snippet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>08.10.2009 Release Notes</title>
		<link>http://www.kimbia.com/d/release-notes/08102009-release-notes/</link>
		<comments>http://www.kimbia.com/d/release-notes/08102009-release-notes/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 22:11:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Release Notes]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=793</guid>
		<description><![CDATA[The August 10th release includes three significant enhancements and features: 1) Improved Sharing link functionality and user interface; 2) Other” Option for Multiple Choice / Single Response Questions; 3) Support for Team Approach CVT file format in Data Mapping templates. Release Notes in PDF attached to this post.]]></description>
			<content:encoded><![CDATA[<p><!--start_raw--><br />
<br />
The August release (planned for August 10th) includes three significant enhancements and features.<br />
Highlights include:</p>
<ul>
<li>Improved Sharing link functionality and user interface</li>
<li>“Other” Option for Multiple Choice / Single Response Questions</li>
<li>Support for Team Approach CVT file format in Data Mapping templates</li>
</ul>
<p>Please review the following document to learn more&#8230;<br />
<a class="pdf" href="http://www.kimbia.com/wp-content/uploads/2009/08/kimbia_releasenotes_20090810.pdf">Release Notes &#8211; August 10, 2009</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/release-notes/08102009-release-notes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing &amp; Customizing your KIMBIA Status widget</title>
		<link>http://www.kimbia.com/d/installing-customizing-status-widget/</link>
		<comments>http://www.kimbia.com/d/installing-customizing-status-widget/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 19:58:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=688</guid>
		<description><![CDATA[KIMBIA's new status widget allows you to display the fundraising status of an entire KIMBIA Campaign, or a specific form on any web page. It is much more than a de-facto thermometer. It can be styled to match the look and feel of your website and customized to reflect the data you wish to display.]]></description>
			<content:encoded><![CDATA[<p>
<br />
KIMBIA's new status widget allows you to display the fundraising status of an entire KIMBIA Campaign, or a specific form on any web page. It is much more than a de-facto thermometer. It can be styled to match the look and feel of your website and customized to reflect the data you wish to display.
<br /><br />
If your Campaigns or forms are using KIMBIA's Everybody features, the status widget can be targeted to an individual advocates status by simply installing it on an HTML page that already displays the personalized donation form for an advocate.
<img src="http://www.kimbia.com/wp-content/uploads/2009/07/status_comparison.gif" alt="" title="KIMBIA Status Widget" width="640" height="300" class="alignnone size-full wp-image-714" />
<br /><br />
This post covers:
<ul>
<li><a href="#campaign_install">Installing the snippet to display a Campaign's status</a></li>
<li><a href="#adv_install">Installing the snippet to display an Advocate's status</a></li>
<li><a href="#single_form">Modifying the snippet to display the status of a single form</a></li>
<li><a href="#offline">Modifying the snippet to account for offline transactions</a></li>
<li><a href="#css">Customizing your Status widget with CSS</a></li>
<li><a href="#opt_param">Optional Parameters</a></li>
</ul>
<hr /><br />
<a name="campaign_install"></a>
<h3>Installing the snippet to display a Campaign's status</h3>
<p>Simply paste the following code into the HTML page you wish to display the status widget:<br />
<code style="font-size:.9em;">&lt;script src="https://widgets.kimbia.com/widgets/executor/statusBar?campaign=[campaign_prefix].kimbia.com"&gt;&lt;/script&gt;</code><br /><br />
This standard snippet will display the Campaign's status by default. Make sure you replace [campaign_prefix] with the actual prefix of your campaign listed in the 'Hosted Page' address on the <strong>Campaign Details</strong> page shown below:
<img src="http://www.kimbia.com/wp-content/uploads/2009/07/picture-29.png" alt="" title="Campaign Details - Campaign prefix" width="640" height="190" class="alignnone size-full wp-image-727"  style="border:1px solid #cccccc"/>
<br /><hr /><br />
<a name="adv_install"></a>
<h3>Installing the snippet to display an Advocate's status</h3>
Follow the same steps as above, but make sure to paste the snippet onto a page that will already be displaying a personalized fundraising form. This page will already contain the Advocate's unique ID in the URL.  The widget will automatically display the amount raised by the advocate and the amount remaining if any.
<br /><br />
If your campaign is using fundraising forms that have a pre-defined goal, we strongly recommend adding the <code>&amp;goal=</code> parameter (see <strong>Optional Parameters</strong> below) to your snippet to display the goal you have set for an individual advocate.
<br /><hr /><br />
<a name="single_form"></a>
<h3>Modifying the snippet to display the status of a single form</h3>
Easy. Use the <code>?channel=</code> parameter (see <strong>Optional Parameters</strong> below) in your snippet and add the portion of 'Hosted Page' address of your form on the <strong>Fundraiser Details</strong> page shown below:
<img src="http://www.kimbia.com/wp-content/uploads/2009/07/picture-30.png" alt="" title="Fundraiser Details - form suffix" width="640" height="232" class="alignnone size-full wp-image-725" style="border:1px solid #cccccc" />
<br /><hr /><br />
<a name="offline"></a>
<h3>Modifying the snippet to account for offline transactions</h3>
We realize that not all donations are made online, nor are all refunds. However, its imperative that when you're reporting the status of a fundraiser you accurately reflect the total amount raised. No problem. Using the <code>&amp;alterTotal=</code> parameter (see <strong>Optional Parameters</strong> below), you can adjust the total displayed up or down to account for offline transactions.
<br /><hr /><br />
<a name="css"></a><h3>Customizing your Status widget with CSS</h3>
We think our status widget looks fabulous out-of-the-box. But, if gilding the lilly is your thing, please be our guests. Using the custom CSS template below, you can easily adjust the default look and feel to match your existing HTML.
<br /><br />
As always, customizing the CSS is optional. If you do choose to create a custom CSS file:<br />
1) you're responsible for hosting this file on your website<br />
2) only include the style attributes from the following template that you wish to override. Placing null value attributes in your declarations will cause your styling to break in unexpected ways!
<br /><br />
<a class="css" href='http://www.kimbia.com/wp-content/uploads/2009/07/custom_statuswidget.css'>KIMBIA Status Widget Custom CSS template</a>
<br />
The following image gives provides a visualization of the HTML elements available for styling and how the markup relates to the rendered widget:
<img src="http://www.kimbia.com/wp-content/uploads/2009/07/statuswidget_codemockup.png" alt="" title="Status Widget Code Mockup" width="640" height="200" class="alignnone size-full wp-image-743"   style="border:1px solid #cccccc" />
</p>
<br /><hr /><br />
<a name="opt_param"></a>
<h3>Optional Parameters</h3>
<table border="0" cellspacing="0" cellpadding="4" style="font-size:.9em;">
  <tr style="background-color:#c3ceb3; color:#698541; font-size:.9em;">
    <th width="17%" align="center" scope="col" style="border-bottom:2px dotted #698541;">PARAMETER</th>
    <th width="13%" align="center" scope="col" style="border-bottom:2px dotted #698541;">FORMAT</th>
    <th width="70%" scope="col" style="border-bottom:2px dotted #698541;">NOTES</th>
  </tr>
  <tr>
    <td align="center" style="border-bottom:2px dotted #cccccc;"><code>?channel=</code></td>
    <td align="center" style="border-bottom:2px dotted #cccccc;">text</td>
    <td style="border-bottom:2px dotted #cccccc;">This will display a single form's fundraising status.<br />
    (ex. '?channel=[CAMPAIGN_PREFIX].kimbia.com/[FORM_SUFFIX]')<br /><em>This should be used in place of the '?campaign=' parameter in the standard snippet</em></td>
  </tr>
  <tr style="background-color:#eaeaea;">
    <td align="center" style="border-bottom:2px dotted #cccccc;"><code>&amp;alterTotal=</code></td>
    <td align="center" style="border-bottom:2px dotted #cccccc;">integer</td>
    <td style="border-bottom:2px dotted #cccccc;">May be a positive or negative value. This value will be either added or subtracted from the total fundraising amount in the KIMBIA system for the campaign or form whose progress is being displayed.<br />(ex. '&amp;alterTotal=300' or '&amp;alterTotal=-200')</td>
  </tr>
  <tr>
    <td align="center" style="border-bottom:2px dotted #cccccc;"><code>&amp;barColor=</code></td>
    <td align="center" style="border-bottom:2px dotted #cccccc;">hex color</td>
    <td style="border-bottom:2px dotted #cccccc;">Color will be applied to:<br />
    &nbsp;&nbsp;&middot;&nbsp;the bar color<br />
    &nbsp;&nbsp;&middot;&nbsp;border & text color of the 'amount raised to date' block<br />
    &nbsp;&nbsp;&middot;&nbsp;background color of the 'days remaining' block<br />
    (ex. '&amp;barColor=9210d5') <em>Do not include the # sign.</em></td>
  </tr>
  <tr style="background-color:#eaeaea;">
    <td align="center" style="border-bottom:2px dotted #cccccc;"><code>&amp;goal=</code></td>
    <td align="center" style="border-bottom:2px dotted #cccccc;">integer</td>
    <td style="border-bottom:2px dotted #cccccc;">This will override the goal set in the Fundraiser Details.<br />
    (ex. '&amp;goal=2000') <em>Positive integers only.</em></td>
  </tr>
</table>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/installing-customizing-status-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing and Customizing your KIMBIA Re-send Email widget</title>
		<link>http://www.kimbia.com/d/installing-customizing-re-send-email-widget/</link>
		<comments>http://www.kimbia.com/d/installing-customizing-re-send-email-widget/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 19:55:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Product Docs]]></category>

		<guid isPermaLink="false">http://www.kimbia.com/?p=761</guid>
		<description><![CDATA[KIMBIA's new Re-send Email widget allows individuals who have previously donated or registered on a form in a Campaign to retrieve copies of all previous emails sent to the email address entered on the original form response.]]></description>
			<content:encoded><![CDATA[<p>
<br />
KIMBIA's new Re-send Email widget allows individuals who have previously donated or registered on a form in a Campaign to retrieve copies of all previous emails sent to the email address entered on the original form response.
<br /><br />
<img src="http://www.kimbia.com/wp-content/uploads/2009/07/resend_mockup.png" alt="" title="Re-send Email Mockup" width="246" height="216" class="alignnone size-full wp-image-772" align="left" style="margin-right:20px" />
After an email address is submitted, the Re-send Email widget will ask the end user to check the email account for the address entered. If the widget was able to locate a record that matches the email address submitted, the previously mailed messages will be re-sent to that email account.
<br /><br />
This post covers:
<ul>
<li><a href="#campaign_install">Installing the snippet for the Re-send Email widget</a></li>
<li><a href="#css">Customizing your Re-send Email widget with CSS</a></li>
</ul>
<hr style="clear:both" /><br />
<a name="campaign_install"></a>
<h3>Installing the snippet for the Re-send Email widget</h3>
<p>Simply paste the following code into the HTML page you wish to display the Email Re-send widget:<br />
<code style="font-size:.9em;">&lt;script src="https://widgets.kimbia.com/widgets/executor/emailResend?campaign=[campaign_prefix].kimbia.com"&gt;&lt;/script&gt;</code><br /><br />
Make sure you replace [campaign_prefix] with the actual prefix of your campaign listed in the 'Hosted Page' address on the <strong>Campaign Details</strong> page shown below:
<img src="http://www.kimbia.com/wp-content/uploads/2009/07/picture-29.png" alt="" title="Campaign Details - Campaign prefix" width="640" height="190" class="alignnone size-full wp-image-727"  style="border:1px solid #cccccc"/>
<br /><hr style="clear:both" /><br />
<a name="css"></a><h3>Customizing your Re-send Email widget with CSS</h3>
We think our Re-send Email widget looks fabulous out-of-the-box. But, if gilding the lilly is your thing, please be our guests. Using the custom CSS template below, you can easily adjust the default look and feel to match your existing HTML.
<br /><br />
As always, customizing the CSS is optional. If you do choose to create a custom CSS file:<br />
1) you're responsible for hosting this file on your website<br />
2) only include the style attributes from the following template that you wish to override. Placing null value attributes in your declarations will cause your styling to break in unexpected ways!
<br /><br />
<a class="css" href="http://www.kimbia.com/wp-content/uploads/2009/07/custom_resendemail.css">KIMBIA Re-send Email Widget Custom CSS template</a>
<br />
The following image gives provides a visualization of the HTML elements available for styling and how the markup relates to the rendered widget:
<img src="http://www.kimbia.com/wp-content/uploads/2009/07/resend_codemockup.png" alt="" title="Resend Code Mockup" width="640" height="289" class="alignnone size-full wp-image-779" style="border:1px solid #cccccc" />

</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimbia.com/d/installing-customizing-re-send-email-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
