<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>AppThemes Docs</title>
	
	<link>http://docs.appthemes.com</link>
	<description>Just another AppThemes site</description>
	<lastBuildDate>Sat, 18 May 2013 03:12:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/AppthemesDocs" /><feedburner:info uri="appthemesdocs" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>AppthemesDocs</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Updating Tickets with Keywords</title>
		<link>http://feedproxy.google.com/~r/AppthemesDocs/~3/_Noe8A1Guog/</link>
		<comments>http://docs.appthemes.com/quality-control/updating-tickets-with-keywords/#comments</comments>
		<pubDate>Tue, 14 May 2013 02:12:11 +0000</pubDate>
		<dc:creator>meloniq</dc:creator>
				<category><![CDATA[Quality Control]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[commit]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[messages]]></category>
		<category><![CDATA[quality control]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[tickets]]></category>

		<guid isPermaLink="false">http://docs.appthemes.com/?p=5056</guid>
		<description><![CDATA[In version 0.7 of Quality Control, we have implemented a feature to manage tickets by using keywords in commit messages. The keywords use the following syntax: key:value Keywords status &#8211; Sets the ticket status. status:closed &#8211; changes the status of ticket to &#8216;closed&#8217; priority &#8211; Sets the ticket priority. priority:high &#8211; changes the priority of [...]]]></description>
				<content:encoded><![CDATA[<p>In version <strong>0.7</strong> of Quality Control, we have implemented a feature to manage tickets by using keywords in commit messages.</p>
<p>The keywords use the following syntax: <em><code>key:value</code></em></p>
<h2>Keywords</h2>
<p><strong>status</strong> &#8211; Sets the ticket status.</p>
<ul>
<li><em><code>status:closed</code></em> &#8211; changes the status of ticket to &#8216;closed&#8217;</li>
</ul>
<p><strong>priority</strong> &#8211; Sets the ticket priority.</p>
<ul>
<li><em><code>priority:high</code></em> &#8211; changes the priority of ticket to &#8216;high&#8217;</li>
</ul>
<p><strong>milestone</strong> &#8211; Sets the ticket milestone.</p>
<ul>
<li><em><code>milestone:future-release</code></em> &#8211; changes the milestone of ticket to &#8216;future-release&#8217;</li>
</ul>
<p><strong>category</strong> &#8211; Sets the ticket category.</p>
<ul>
<li><em><code>category:design</code></em> &#8211; changes the category of ticket to &#8216;design&#8217;</li>
</ul>
<p><strong>tagged</strong> &#8211; Adds tags to a ticket.</p>
<ul>
<li><em><code>tagged:needs-testing</code></em> &#8211; adds an &#8216;needs-testing&#8217; tag to ticket</li>
<li><em><code>tagged:needs-testing tagged:dev-build</code></em> &#8211; adds an &#8216;needs-testing&#8217; and &#8216;dev-build&#8217; tags to ticket</li>
</ul>
<p><strong>assigned</strong> &#8211; Assigns a ticket to users.</p>
<ul>
<li><em><code>assigned:meloniq</code></em> &#8211; assigns the ticket to &#8216;meloniq&#8217; user</li>
<li><em><code>assigned:dave assigned:shannon</code></em> &#8211; assigns the ticket to &#8216;dave&#8217; and &#8216;shannon&#8217; users</li>
</ul>
<p><strong>NOTE:</strong></p>
<ul>
<li>do not put a space before or after the colon</li>
<li>used values are equal to created by WordPress &#8216;slugs&#8217; for term</li>
<li>value <em>&#8216;none&#8217;</em> clears the status, milestone, category or tags</li>
<li>to assign a user, as value use his login</li>
</ul>
<h2>Commit messages</h2>
<p>The above keywords can be present in commit messages from your source control tool (such as svn or git). You&#8217;ll have to add the ticket number to the commit message so Quality Control knows which ticket you want to update:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="php" style="font-family:monospace;">git commit <span style="color: #339933;">-</span>m <span style="color: #0000ff;">&quot;fixed the bug [#13 status:closed]&quot;</span></pre></td></tr></table></div>

<p>You can also modify multiple tickets from a single commit:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="php" style="font-family:monospace;">git commit <span style="color: #339933;">-</span>m <span style="color: #0000ff;">&quot;fixed the bug [#13 #69 status:closed]&quot;</span>
git commit <span style="color: #339933;">-</span>m <span style="color: #0000ff;">&quot;fixed the bug [#13 tagged:needs-testing] [#69 status:closed milestone:3-3]&quot;</span></pre></td></tr></table></div>

<p>Like this tutorial? <a href="http://www.appthemes.com/subscribe/">Subscribe</a> and get the latest tutorials delivered straight to your inbox or feed reader.</p><img src="http://feeds.feedburner.com/~r/AppthemesDocs/~4/_Noe8A1Guog" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://docs.appthemes.com/quality-control/updating-tickets-with-keywords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://docs.appthemes.com/quality-control/updating-tickets-with-keywords/</feedburner:origLink></item>
		<item>
		<title>Quality Control Version 0.7</title>
		<link>http://feedproxy.google.com/~r/AppthemesDocs/~3/Txc-t4-cd8M/</link>
		<comments>http://docs.appthemes.com/quality-control/quality-control-version-0-7/#comments</comments>
		<pubDate>Tue, 14 May 2013 02:06:21 +0000</pubDate>
		<dc:creator>meloniq</dc:creator>
				<category><![CDATA[Quality Control]]></category>
		<category><![CDATA[quality control]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://docs.appthemes.com/?p=5135</guid>
		<description><![CDATA[On May 13th, 2013, Quality Control 0.7 was released. This is a maintenance and minor new feature release. Fixed 23 tickets total. A breakdown of tickets can be found below. Upgrade Information Use the AppThemes Updater Plugin to automatically update the theme, or visit www.appthemes.com and click on My Account to download the updated version. [...]]]></description>
				<content:encoded><![CDATA[<p>On May 13th, 2013, Quality Control 0.7 was released. This is a maintenance and minor new feature release. Fixed 23 tickets total. A breakdown of tickets can be found below.</p>
<h2>Upgrade Information</h2>
<p>Use the <a href="http://www.appthemes.com/blog/new-plugin-to-keep-your-themes-healthy/">AppThemes Updater Plugin</a> to automatically update the theme, or visit www.appthemes.com and click on My Account to download the updated version.</p>
<h2>Fixes</h2>
<ul>
<li>Fixed styling of ticket paragraphs</li>
<li>Fixed assigning user and taxonomies while creating ticket</li>
<li>Fixed incorrect redirect after deleting ticket</li>
<li>Fixed undefined index notice after deactivating repository plugin</li>
<li>Fixed undefined variable notice in the sidebar call</li>
<li>Fixed undefined method QC_Ticket_Status::update_ticket() error</li>
<li>Fixed xml parse error for beanstalk repository</li>
<li>Fixed visibility of tickets per Permissions settings</li>
<li>Fixed quick editing ticket</li>
</ul>
<h2>Changes</h2>
<ul>
<li>Improved parsing commit messages, see: <a href="/quality-control/updating-tickets-with-keywords/" title="Updating tickets with keywords">Updating tickets with keywords</a></li>
<li>Added recent tickets widget</li>
<li>Added &#8216;assigned to&#8217; link in project team widget</li>
<li>Added filtering by &#8216;assigned to&#8217; all tickets pages</li>
<li>Added creating default milestones and ticket on theme installation</li>
<li>Added changeset url metabox to add/edit changeset page</li>
<li>Added css class to tickets with priority taxonomy, can easy highlight important tickets</li>
<li>Reverted showing ticket details on archives pages</li>
</ul>
<h2>Files Modified</h2>

<div class="wp_syntax"><table><tr><td class="code"><pre class="txt" style="font-family:monospace;">Modified    changelog.txt
Modified    form-login.php
Modified    form-password-recovery.php
Modified    form-password-reset.php
Modified    form-registration.php
Modified    framework
Modified    functions.php
Modified    includes/admin/admin.php
Modified    includes/admin/settings.php
Modified    includes/class-qc-taxonomy.php
Modified    includes/core.php
Modified    includes/modules/assignment.php
Modified    includes/modules/categories.php
Modified    includes/modules/changesets.php
Modified    includes/modules/milestones.php
Deleted     includes/modules/notifications.php
Modified    includes/modules/priorities.php
Modified    includes/modules/states.php
Modified    includes/modules/tags.php
Modified    includes/template-tags.php
Modified    includes/utils.php
Modified    includes/views.php
Modified    includes/widgets.php
Modified    index.php
Modified    qualitycontrol.pot
Added	    scripts/i18n/timeago/jquery.timeago.ar.js
Added	    scripts/i18n/timeago/jquery.timeago.bg.js
Added	    scripts/i18n/timeago/jquery.timeago.bs.js
Added	    scripts/i18n/timeago/jquery.timeago.ca.js
Added	    scripts/i18n/timeago/jquery.timeago.cy.js
Added	    scripts/i18n/timeago/jquery.timeago.cz.js
Added	    scripts/i18n/timeago/jquery.timeago.da.js
Added	    scripts/i18n/timeago/jquery.timeago.de.js
Added	    scripts/i18n/timeago/jquery.timeago.el.js
Added	    scripts/i18n/timeago/jquery.timeago.en-short.js
Added	    scripts/i18n/timeago/jquery.timeago.en.js
Added	    scripts/i18n/timeago/jquery.timeago.es.js
Added	    scripts/i18n/timeago/jquery.timeago.fa.js
Added	    scripts/i18n/timeago/jquery.timeago.fi.js
Added	    scripts/i18n/timeago/jquery.timeago.fr-short.js
Added	    scripts/i18n/timeago/jquery.timeago.fr.js
Added	    scripts/i18n/timeago/jquery.timeago.he.js
Added	    scripts/i18n/timeago/jquery.timeago.hr.js
Added	    scripts/i18n/timeago/jquery.timeago.hu.js
Added	    scripts/i18n/timeago/jquery.timeago.hy.js
Added	    scripts/i18n/timeago/jquery.timeago.id.js
Added	    scripts/i18n/timeago/jquery.timeago.it.js
Added	    scripts/i18n/timeago/jquery.timeago.ja.js
Added	    scripts/i18n/timeago/jquery.timeago.ko.js
Added	    scripts/i18n/timeago/jquery.timeago.lt.js
Added	    scripts/i18n/timeago/jquery.timeago.mk.js
Added	    scripts/i18n/timeago/jquery.timeago.nl.js
Added	    scripts/i18n/timeago/jquery.timeago.no.js
Added	    scripts/i18n/timeago/jquery.timeago.pl.js
Added	    scripts/i18n/timeago/jquery.timeago.pt-br.js
Added	    scripts/i18n/timeago/jquery.timeago.pt.js
Added	    scripts/i18n/timeago/jquery.timeago.ro.js
Added	    scripts/i18n/timeago/jquery.timeago.ru.js
Added	    scripts/i18n/timeago/jquery.timeago.sk.js
Added	    scripts/i18n/timeago/jquery.timeago.sl.js
Added	    scripts/i18n/timeago/jquery.timeago.sv.js
Added	    scripts/i18n/timeago/jquery.timeago.th.js
Added	    scripts/i18n/timeago/jquery.timeago.tr.js
Added	    scripts/i18n/timeago/jquery.timeago.uk.js
Added	    scripts/i18n/timeago/jquery.timeago.uz.js
Added	    scripts/i18n/timeago/jquery.timeago.zh-CN.js
Added	    scripts/i18n/timeago/jquery.timeago.zh-TW.js
Modified    scripts/jquery.timeago.js
Modified    single-ticket.php
Modified    style.css
Modified    templates/loop-ticket.php
Modified    templates/navigation.php
Modified    templates/ticket-meta.php
Modified    tests/lib
Added	    tests/test_changesets.php
Modified    tests/test_emails.php
Modified    tests/test_protected.php
Modified    tests/test_read-only.php
Modified    tests/testcase.php
Modified    wrapper.php</pre></td></tr></table></div>

<img src="http://feeds.feedburner.com/~r/AppthemesDocs/~4/Txc-t4-cd8M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://docs.appthemes.com/quality-control/quality-control-version-0-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://docs.appthemes.com/quality-control/quality-control-version-0-7/</feedburner:origLink></item>
		<item>
		<title>Setting Up Events in Vantage</title>
		<link>http://feedproxy.google.com/~r/AppthemesDocs/~3/2gG_CS6gBt4/</link>
		<comments>http://docs.appthemes.com/tutorials/setting-up-events/#comments</comments>
		<pubDate>Fri, 10 May 2013 00:18:43 +0000</pubDate>
		<dc:creator>ayaan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Vantage]]></category>

		<guid isPermaLink="false">http://docs.appthemes.com/?p=5107</guid>
		<description><![CDATA[Enable Events There are just a few things you will want to do to get Events going. We will walk you through the process here. By default, events in vantage is disabled. To enable events in the administration panel, go to &#8220;Vantage &#62; Settings &#62; Events&#8221;. Here you can see an option “Enable Events”, checking [...]]]></description>
				<content:encoded><![CDATA[<h3>Enable Events</h3>
<p>There are just a few things you will want to do to get Events going. We will walk you through the process here.</p>
<p>By default, events in vantage is disabled. To enable events in the administration panel, go to &#8220;Vantage &gt; Settings &gt; Events&#8221;. Here you can see an option “Enable Events”, checking this option and saving changes will enable events in Vantage.<br />
<a href="https://docs.appthemes.com/files/2013/05/Img-1.png"><img class="alignnone size-full wp-image-5108" style="border: 1px solid #666;" alt="Enable Events in Vantage" src="https://docs.appthemes.com/files/2013/05/Img-1.png" width="648" /></a></p>
<h3>Configuring Events</h3>
<p>After you have enabled events you will be able to see the remaining configuration setting options.<br />
<a href="https://docs.appthemes.com/files/2013/05/Img-2.png"><img class="alignnone size-full wp-image-5109" style="border: 1px solid #666;" alt="Configuration settings for Events." src="https://docs.appthemes.com/files/2013/05/Img-2.png" width="648" /></a></p>
<p><strong>General Settings</strong></p>
<ul>
<li><strong>Charge for Events</strong> &#8211; Allows you to charge users for posting an event to your site. Default value is unchecked. Check “Yes” to enable.</li>
<li><strong>Moderate Event</strong> &#8211; Checking “Yes” means that newly posted events will be held in moderation. The event will not be published until you approve it (see more info on approving events at the bottom of this tutorial).</li>
</ul>
<p><strong>Search Settings</strong></p>
<ul>
<li><strong>Default Search Result Sort</strong> &#8211; Applies default sorting order for events search results – only when search by location is not involved. The options for these settings are:
<ul>
<li>Event Date – Events are sorted event date.</li>
<li>Newest First – Listings are sorted by the time the event was created. The most recently created listings will appear at the top.</li>
<li>Alphabetical – Events are sorted alphabetically by event name.</li>
<li>Popular – Events are sorted by number of event comments and number of attending (see tutorial on <a href="http://docs.appthemes.com/tutorials/setting-up-and-using-the-event-attendees-widget">attending widget</a>).</li>
</ul>
</li>
<li><strong>Default location based Search Result Sort</strong> – Applies default sorting order for events search results when searching by location. The options for these settings are:
<ul>
<li>Closest Distance First – Events are sorted by distance from the location searched.</li>
<li>Event Date – Events are sorted event date.</li>
<li>Newest First – Listings are sorted by the time the event was created. The most recently created listings will appear at the top.</li>
<li>Alphabetical – Events are sorted alphabetically by event name.</li>
<li>Popular – Events are sorted by number of event comments and number of attending (see tutorial on <a href="http://docs.appthemes.com/tutorials/setting-up-and-using-the-event-attendees-widget">attending widget</a>).</li>
</ul>
</li>
</ul>
<p><strong>Appearance Settings</strong></p>
<ul>
<li><strong>Events Per page</strong> – Determines the number of events displayed on each list page. For example if you enter “5”, five events will be shown on home page or any page where events are listed.</li>
</ul>
<p><strong>Integration Settings</strong></p>
<ul>
<li><strong>Display ShareThis on Event Listing</strong> – This option is used to display social media sharing options provided by the ShareThis plugin. By default this option is disabled. To enable this option, you will need to install the ShareThis plugin.</li>
</ul>
<h3>Setting up Payments for Events</h3>
<p>Now that we have configured all the general settings events, let’s go ahead and setup payment settings for events.</p>
<p>Vantage allows you to charge for users to post events to your site. Events are offered with a simpler pricing structure than listings but you still get plenty of listing options.</p>
<p><strong>Enable Payments for Events</strong><br />
If you are going to charge for events, you want to enable this in Vantage. The default setting for this is “Off”. To enable it, go to Admin &gt; Vantage &gt; Settings &gt;Events. You should see the admin panel pictured below.<br />
<a href="https://docs.appthemes.com/files/2013/05/Img-3.png"><img class="alignnone size-full wp-image-5110" style="border: 1px solid #666;" alt="Charge for Events" src="https://docs.appthemes.com/files/2013/05/Img-3.png" width="648" /></a></p>
<p>Make sure “Charge for Events” is checked and click the “Save Changes” button. Vantage will now charge for Events.</p>
<p><strong>Pricing Settings</strong><br />
Now that we have enabled charging for events, let&#8217;s see how to set up pricing for events in Vantage. Go to Admin &gt; Payment &gt; Settings &gt; Events tab to access payments settings for events. Payments settings for events will not be accessible if charging for events is not enabled.<br />
Settings for pricing are explained below.<br />
<a href="https://docs.appthemes.com/files/2013/05/Img-5.png"><img class="alignnone size-full wp-image-5112" style="border: 1px solid #666;" alt="Setting up pricing for Events." src="https://docs.appthemes.com/files/2013/05/Img-5.png" width="648" /></a></p>
<ul>
<li><strong>Price:</strong> Sets the price for adding a single event.<br />
<a href="https://docs.appthemes.com/files/2013/05/Img-6.png"><img class="alignnone size-full wp-image-5113" style="border: 1px solid #666;" alt="Price for single event." src="https://docs.appthemes.com/files/2013/05/Img-6.png" width="648" /></a></li>
<li><strong>Enable Featured on Home:</strong> Allows users to post events which will appear on the home page and marked as featured.</li>
<li><strong>Featured on Home-Price:</strong> Sets the price for an event featured on the home page.<br />
<a href="https://docs.appthemes.com/files/2013/05/Img-7.png"><img class="alignnone size-full wp-image-5114" style="border: 1px solid #666;" alt="Feature event on Home Page." src="https://docs.appthemes.com/files/2013/05/Img-7.png" width="648" /></a></li>
<li><strong>Enable Featured on Category:</strong> Allows users to post events which will appear on a category page and marked as featured.</li>
<li><strong>Featured on Category-Price:</strong> Sets the price for an event featured in category.<br />
<a href="https://docs.appthemes.com/files/2013/05/Img-8.png"><img class="alignnone size-full wp-image-5115" style="border: 1px solid #666;" alt="Feature event on Category Page." src="https://docs.appthemes.com/files/2013/05/Img-8.png" width="648" /></a></li>
<li><strong>Surcharges for Event Categories</strong><a href="https://docs.appthemes.com/files/2013/05/Img-9.png"><img class="size-full wp-image-5116 alignright" style="border: 1px solid #666666;" alt="Surcharges for event categories." src="https://docs.appthemes.com/files/2013/05/Img-9.png" width="263" height="333" /></a><br />
Surcharges allow you to charge a little more for posting events in specific categories. Surcharges are added to the regular price to post an event.For example, if an event is created in the “Automobile” category, the total cost of creating the event will be $30 ($5 for the listing price and $25 for the category surcharge).</li>
</ul>
<p>To learn more about pricing and other pricing settings in Vantage, read our tutorial <a href="http://docs.appthemes.com/tutorials/setting-up-vantage-pricing-plans">Setting Up Payments in Vantage</a>.</p>
<h3>Events are Now Ready to Go!</h3>
<p>Once you have enabled events, saved events settings and set up event pricing, you’re ready to go. Your site’s visitors can now post events to your Vantage business directory website.</p>
<p>If you did not enable events moderation, all new events will be published to your site immediately. On the other hand, if you enabled events moderation, you will need to approve events before they are published. Let’s take a look at how that is done.</p>
<p><strong>Moderating Events</strong><br />
Reviewing Events before they are posted is a good way to make sure that the content on your site is top-notch. See the instructions above to find out how to enable events moderation.</p>
<p><strong>Approving an Event</strong><br />
Let&#8217;s see how to approve an Event posted by a user. Start by going to Admin &gt; Events and a list of all the Events posted will appear.<br />
<a href="https://docs.appthemes.com/files/2013/05/Img-10.png"><img class="alignnone size-full wp-image-5117" style="border: 1px solid #666;" alt="Event Listing in WP - Admin." src="https://docs.appthemes.com/files/2013/05/Img-10.png" width="648" /></a></p>
<p>At this point, you have a couple of options on how you can approve an event.</p>
<ul>
<li><strong>Approve via Quick Edit</strong> – In the list of events, hover the mouse pointer over the title of the event you wish to approve. From the links that appear below the title, click the “Quick Edit” link. This will open editing options for that event. Change “Status” to “Published”, and click on the “Update” button. This will approve the Event and make it visible to everyone.<br />
<a href="https://docs.appthemes.com/files/2013/05/Img-11.png"><img class="alignnone size-full wp-image-5118" style="border: 1px solid #666;" alt="Quick Edit Event." src="https://docs.appthemes.com/files/2013/05/Img-11.png" width="648" /></a></li>
<li><strong>Approve via Edit Page</strong> – In the list of events, click any event to edit it. On the Edit Event page, click the ‘Accept’ button in the moderation queue box to approve the event.<br />
<a href="https://docs.appthemes.com/files/2013/05/Img-12.png"><img class="alignnone size-full wp-image-5119" style="border: 1px solid #666;" alt="Editing an Event." src="https://docs.appthemes.com/files/2013/05/Img-12.png" width="648" /></a></li>
</ul>
<p>Like this tutorial? <a href="http://www.appthemes.com/subscribe/">Subscribe</a> and get the latest tutorials delivered straight to your inbox or feed reader.</p><img src="http://feeds.feedburner.com/~r/AppthemesDocs/~4/2gG_CS6gBt4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://docs.appthemes.com/tutorials/setting-up-events/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://docs.appthemes.com/tutorials/setting-up-events/</feedburner:origLink></item>
		<item>
		<title>Setting up maps and using map widgets</title>
		<link>http://feedproxy.google.com/~r/AppthemesDocs/~3/0iKwBDXA_Yw/</link>
		<comments>http://docs.appthemes.com/tutorials/setting-up-maps-and-using-map-widgets/#comments</comments>
		<pubDate>Thu, 09 May 2013 00:12:08 +0000</pubDate>
		<dc:creator>ayaan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Vantage]]></category>

		<guid isPermaLink="false">http://docs.appthemes.com/?p=5068</guid>
		<description><![CDATA[Setting up maps In Vantage 1.2, we have moved map settings to a new location: Admin &#62; Vantage &#62; Geo Settings. This is done in anticipation of the soon-to-be-released AppMaps plugin which will allow alternatives to the Google Maps API that comes standard with Vantage. As before, the Geo Settings will control how Vantage works [...]]]></description>
				<content:encoded><![CDATA[<h3>Setting up maps</h3>
<p>In Vantage 1.2, we have moved map settings to a new location: Admin &gt; Vantage &gt; Geo Settings. This is done in anticipation of the soon-to-be-released AppMaps plugin which will allow alternatives to the Google Maps API that comes standard with Vantage. As before, the Geo Settings will control how Vantage works with map APIs to determine locations and distances.</p>
<p><strong>General Settings</strong><br />
<a href="https://docs.appthemes.com/files/2013/05/MAP-1.png"><img src="https://docs.appthemes.com/files/2013/05/MAP-1.png" alt="General Settings" width="648" title="General-Settings" class="alignnone size-full wp-image-5071" style="border:1px solid #666" /></a></p>
<ul>
<li><strong>Installed Geocoders:</strong> This option determines which “Geocoder” will be used for Vantage. A geocoder takes a given address and converts it to geographic coordinates. All available/installed geocoders will be listed in the “Geocoder” drop down box. Google is the default geocoder provided with the theme and the only option available without the addition of a plugin.</li>
<li><strong>Distance Unit:</strong> Allows you to select Kilometers or Miles as the desired unit of distance for your site.</li>
<li><strong>Default Standard Location Search Radius:</strong> Sets the default value for search radius when searching by location in Vantage. For example, if a user searches for a Listing/Event in Toledo, Ohio, then the search result will display listings or events within 100 miles radius on Toledo. If the “Distance Unit” was set to kilometers, then the search radius would be 100km.</li>
<li><strong>Map Provider:</strong> This setting allows you to select the Map Provider used to display maps on your Vantage site. Google Maps is the default Map Provider provided with the theme and the only option available without the addition of a plugin.</li>
</ul>
<p><strong>Geocoder – Google</strong><br />
Now that we have seen the General Settings for maps let’s go through the Google geocoder tab. Google is the default goecoderfor Vantage. You can set up language and region biasing for Google’s geocoder using the options below.</p>
<ul>
<li><strong>Region Biasing:</strong> This option lets Vantageget a better idea of the locations being entered by your users. For example, if you enter the country code “US”(for the United States)for Region Biasing and a user enters ‘Florence’ in the location search, Google knows that they probably meant ‘Florence, Alabama’. And if you enter “IT” (for Italy), then Google will fetch ‘Florence, Italy’.You can find more support for country code <a href="http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains" title="here" target="_blank">here</a>.To set up Region Biasing you will have to enter a two letter Country Code and click “Save Changes” button.</li>
<li><strong>Language:</strong> This option allows you to select the language used to display locations and other information on maps.To set the language, enter a two letter language codes, i.e., if you entered ‘EN’ your map will display in “English” likewise, ‘DE’ for “German”, ‘FR’ for “French” etc. You can find more supported language code from <a href="https://spreadsheets.google.com/pub?key=p9pdwsai2hDMsLkXsoM05KQ&amp;gid=1" title="here" target="_blank">here</a>.</li>
<li><strong>Distance Unit:</strong> Allows you to select the unit of distance to use on your site.</li>
</ul>
<p><a href="https://docs.appthemes.com/files/2013/05/MAP-2.png"><img src="https://docs.appthemes.com/files/2013/05/MAP-2.png" alt="Distance Unit" width="648" class="alignnone size-full wp-image-5075" style="border:1px solid #666" /></a></p>
<p><strong>Map Provider – Google</strong><br />
Google is the default Map Provider which is embedded with Vantage. You can set up language and region biasing of “Map Provider &#8211; Google” using the below mentioned options.</p>
<ul>
<li><strong>Region Biasing:</strong> This option lets Vantage get a better idea of the locations being entered by your users. For example, if you enter the country code “US” (for the United States) forRegion Biasing and a user enters ‘Florence’ in the location search, Google knows that they probably meant ‘Florence, Alabama’. And if you enter “IT” (for Italy), then Google will fetch ‘Florence, Italy’.You can find more support for country code <a href="http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains" title="here" target="_blank">here</a>. To set up Region Biasing you will have to enter a two letter Country Code and click “Save Changes” button.</li>
<li><strong>Language:</strong> This option allows you to select the language used to display locations and other information on maps. To set the language, enter a two letter language codes, i.e., if you entered ‘EN’ your map will display in “English” likewise, ‘DE’ for “German”, ‘FR’ for “French” etc. You can find more supported language code from <a href="https://spreadsheets.google.com/pub?key=p9pdwsai2hDMsLkXsoM05KQ&amp;gid=1" title="here" target="_blank">here</a>.</li>
<li><strong>Distance Unit:</strong> Allows you to select the unit of distance to use on your site.</li>
</ul>
<p><a href="https://docs.appthemes.com/files/2013/05/MAP-3.png"><img src="https://docs.appthemes.com/files/2013/05/MAP-3.png" alt="MAP Provider Distance Unit" width="648" class="alignnone size-full wp-image-5076" style="border:1px solid #666" /></a></p>
<h3>Using Map Widgets</h3>
<p>Now that you have set up “Geo Settings”, we will walk you through set up and use of the location widgets. There are two location widgets available in Vantage.</p>
<p><strong>Vantage – Listing/Event Location widget</strong><br />
The Vantage – Listing/Event Location widget displays a map containing the location of a single listing or event. This widget is used in the Single Listing Sidebar or the Single Event Sidebar.To use it, go to Admin &gt; Appearance &gt; Widgets. In the Available Widgets area, drag the Vantage – Listing/Event Location widget and drop it in the Single Listing Sidebar or the Single Event Sidebar.<br />
<a href="https://docs.appthemes.com/files/2013/05/MAP-4.png"><img src="https://docs.appthemes.com/files/2013/05/MAP-4.png" alt="Vantage Listing Event Location widget " width="648" class="alignnone size-full wp-image-5079" style="border:1px solid #666" /></a></p>
<p>Let’s review the options for this widget:</p>
<ul>
<li><strong>Title:</strong> If you want to display a specific title in the sidebar for the map widget, then you can do this by entering the desired text in the Title field and clicking “Save”. This will display the title above the map in the sidebar. If it is left blank then the map will be displayed without a title.</li>
<li><strong>Map Zoom:</strong> This option is used to define the default zoom in level for the location on map, if left blank it will use the default zoom in settings. You can enter numeric values from 0 to 100, these values will be considered as percentage (you do not need to type the % symbol, only a number).</li>
<li><strong>Show Driving Directions: </strong> This option is used to enable the driving directions option. Enabling driving directions adds another text field below map. If a user wants to get directions, they simply enter their location in the additional text field and click the “Get Directions” button. Detailed directions will be displayed with an option to print the directions.</li>
</ul>
<p><a href="https://docs.appthemes.com/files/2013/05/MAP-5.png"><img src="https://docs.appthemes.com/files/2013/05/MAP-5.png" alt="Vantage – Listing/Event Location widget" width="648" class="alignnone size-full wp-image-5085" style="border:1px solid #666" /></a></p>
<p><strong>Vantage – Listings/Events Locations widget</strong><br />
The Vantage – Listings/Events Locations widget displays a large map at the top of all the pages where a list of listings or events is displayed – like the home page, search results or similar. All items on a given list page will appear on this large map – events and listings, all on one map. </p>
<p>To activate the large map go to, Admin &gt; Appearance &gt; Widgets. Look for the Vantage – Listings/Events Locations widget in the Available Widgets area and drag the widget to the List Page Top Sidebar as shown in the image below.<br />
<a href="https://docs.appthemes.com/files/2013/05/MAP-6.png"><img src="https://docs.appthemes.com/files/2013/05/MAP-6.png" alt="Listings/Events Locations widget" width="648" class="alignnone size-full wp-image-5088" style="border:1px solid #666" /></a><br />
The Vantage – Listings/Events Locations widget is very simple and has only one option.</p>
<ul>
<li><strong>Title:</strong> If you want to display a specific title in the frontend for the map then, you can do this by entering desired text in “Title” field and clicking “Save”. This will display the title above the map. Entering Title is optional. If it is left blank then the map will be displayed without a title.</li>
</ul>
<p>The image below shows how the map is displayed on the Home Page. In the map, locations for listings are marked with a blue pin, and events are marked with a red pin.<br />
<a href="https://docs.appthemes.com/files/2013/05/MAP-15.png"><img src="https://docs.appthemes.com/files/2013/05/MAP-15.png" alt="map locations for listings" width="648" class="alignnone size-full wp-image-5094" style="border:1px solid #666" /></a></p>
<p>Like this tutorial? <a href="http://www.appthemes.com/subscribe/">Subscribe</a> and get the latest tutorials delivered straight to your inbox or feed reader.</p><img src="http://feeds.feedburner.com/~r/AppthemesDocs/~4/0iKwBDXA_Yw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://docs.appthemes.com/tutorials/setting-up-maps-and-using-map-widgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://docs.appthemes.com/tutorials/setting-up-maps-and-using-map-widgets/</feedburner:origLink></item>
		<item>
		<title>Setting Up and Using the Event Attendees Widget in Vantage</title>
		<link>http://feedproxy.google.com/~r/AppthemesDocs/~3/OT2S-nfgN_8/</link>
		<comments>http://docs.appthemes.com/tutorials/setting-up-and-using-the-event-attendees-widget/#comments</comments>
		<pubDate>Fri, 03 May 2013 23:16:51 +0000</pubDate>
		<dc:creator>ayaan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Vantage]]></category>

		<guid isPermaLink="false">http://docs.appthemes.com/?p=5024</guid>
		<description><![CDATA[Where there are events, there will be people attending those events. Vantage provides an easy to use yet effective widget, “Vantage – Event Attendees“ for users to express that they will be attending an event and also check who else will be attending the same. We will now walk you through set up and use [...]]]></description>
				<content:encoded><![CDATA[<p>Where there are events, there will be people attending those events. Vantage provides an easy to use yet effective widget, “Vantage – Event Attendees“ for users to express that they will be attending an event and also check who else will be attending the same. We will now walk you through set up and use of the widget.</p>
<h3>Setting up the Event Attendees Widget</h3>
<p>First, you will need to have events enabled. Go to Admin &gt; Vantage &gt; Settings &gt; Events tab to enable events. For more info on setting up events see the <a href="http://docs.appthemes.com/tutorials/setting-up-events">Enabling Events in Vantage</a> tutorial.</p>
<p>To setup the Event Attendees Widget, go to Admin &gt; Appearance &gt; Widgets. This will display all the available widgets and the sidebars used by Vantage. In the “Available Widgets” area find the “Vantage – Event Attendees” widget and drag it to the “Single Event Sidebar” as shown in the image below.</p>
<p><a href="https://docs.appthemes.com/files/2013/05/8.png"><img src="https://docs.appthemes.com/files/2013/05/8.png" alt="Vantage Event Attendees" title="Vantage-Event-Attendees" width="648" class="alignnone size-full wp-image-5026" style="border:1px solid #666" /></a></p>
<p>As you can see in the image above, you can enter a title and it will be displayed above the widget in the sidebar.</p>
<h3>Using the Event Attendees Widget</h3>
<p>Now that you have setup the widget from back end, let&#8217;s see how it works in the front end. The image below shows how the widget will display in the sidebar of a single event page.</p>
<p><a href="https://docs.appthemes.com/files/2013/05/12.png"><img src="https://docs.appthemes.com/files/2013/05/12.png" alt="I’m attending widget " width="648" class="alignnone size-full wp-image-5028" style="border:1px solid #666" /></a></p>
<h4>Attending an Event</h4>
<p>If you want to attend an event, find the event attendees widget in the sidebar and click the “Yes, I want to attend!” link. Once clicked, your username will be added to the list of people attending and &#8220;Yes, I&#8217;m attending!&#8221; will appear at the top of the widget. Additionally, the link will change to “Change my reservation” as shown in the image below. If you do not wish to attend this event you can simply click on “Change my reservation” link and it will remove your name from the list of people who will be attending this event.</p>
<p>Note: If you haven’t logged in yet and you click on this link, it will prompt you to login in first. </p>
<p><a href="https://docs.appthemes.com/files/2013/05/13.png"><img src="https://docs.appthemes.com/files/2013/05/13.png" alt="Attending an Event" width="648" class="alignnone size-full wp-image-5030" style="border:1px solid #666" /></a></p>
<h4>See Who’s Attending</h4>
<p>Along with RSVP&#8217;ing for an event Event Attendees widget also allows you to see who all user who are attending the event. Just click on the “See Who’s Attending” link and a lightbox window will display links of all the people who are attending the event.</p>
<p><a href="https://docs.appthemes.com/files/2013/05/14.png"><img src="https://docs.appthemes.com/files/2013/05/14.png" alt="Who’s Attending" width="648" class="alignnone size-full wp-image-5032" style="border:1px solid #666" /></a></p>
<p>Like this tutorial? <a href="http://www.appthemes.com/subscribe/">Subscribe</a> and get the latest tutorials delivered straight to your inbox or feed reader.</p><img src="http://feeds.feedburner.com/~r/AppthemesDocs/~4/OT2S-nfgN_8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://docs.appthemes.com/tutorials/setting-up-and-using-the-event-attendees-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://docs.appthemes.com/tutorials/setting-up-and-using-the-event-attendees-widget/</feedburner:origLink></item>
		<item>
		<title>Setting up Payments in JobRoller: Pricing Plans</title>
		<link>http://feedproxy.google.com/~r/AppthemesDocs/~3/CfD1CIeZjd8/</link>
		<comments>http://docs.appthemes.com/jobroller/setting-up-payments-in-jobroller-pricing-plans/#comments</comments>
		<pubDate>Thu, 25 Apr 2013 06:48:09 +0000</pubDate>
		<dc:creator>Bruno Carreço</dc:creator>
				<category><![CDATA[JobRoller]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jobroller]]></category>
		<category><![CDATA[payments]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://docs.appthemes.com/?p=4922</guid>
		<description><![CDATA[So you&#8217;ve gone through part one of Setting Up Payments in JobRoller. You made changes to the job listings settings and set up the options in payments settings. Let&#8217;s create some pricing plans! Create Your First Pricing Plan In order to accept payments for job listings, you must create a pricing plan in JobRoller and [...]]]></description>
				<content:encoded><![CDATA[<p>So you&#8217;ve gone through part one of <a href="http://docs.appthemes.com/jobroller/setting-up-payments-in-jobroller-payments-settings">Setting Up Payments in JobRoller</a>. You made changes to the job listings settings and set up the options in payments settings. Let&#8217;s create some pricing plans!</p>
<h3>Create Your First Pricing Plan</h3>
<p>In order to accept payments for job listings, you must create a pricing plan in <em>JobRoller</em> and assign the plan to job categories. We&#8217;ll do that now. But before we do, it&#8217;s helpful to see how the pricing plans will look to your customers. You can see that in the screenshot below.</p>
<p><a href="https://docs.appthemes.com/files/2013/05/jobroller_plans_frontend_dollar_left-e1367598540306.png"><img src="https://docs.appthemes.com/files/2013/05/jobroller_plans_frontend_dollar_left-e1367598540306.png" alt="JobRoller Plans Select" width="640" height="515" class="alignnone size-full wp-image-5044" /></a><br />
For this tutorial, we&#8217;ll create &#8216;Single&#8217; price plans. If you need to create a &#8216;Pack&#8217; plan please read our tutorial on <a href="http://docs.appthemes.com/jobroller/creating-and-using-job-packs/">creating Pack plans</a>. </p>
<p>Let&#8217;s create the pricing plans in the screenshot above. We&#8217;ll start with the &#8220;Basic&#8221; plan. In the WordPress admin, navigate to <em>Payments &gt; Plans</em>. On the &#8220;Job Plans&#8221; page, click the &#8220;Add New&#8221; button at the top of the page. You should see the page below.</p>
<p><a href="https://docs.appthemes.com/files/2013/04/jobroller_plan_add_new.png"><img src="https://docs.appthemes.com/files/2013/04/jobroller_plan_add_new-e1366747351352.png" alt="jobroller_plan_add_new" width="640" height="515" class="alignnone size-full wp-image-4925" /></a><br />
<strong>Plan Name</strong><br />
This will be the name of your pricing plan. You can use names that will help you keep track of your plans but you should remember that your customers will also see the pricing plan name when they buy a job listing. You want keep that in mind. To match our example, we&#8217;ll add &#8220;Basic&#8221; here.</p>
<p><strong>Description</strong><br />
This section allows you the opportunity to give a little more details to your customers about the pricing plan. You can also use the description to &#8220;sell&#8221; the plan. For this section, we&#8217;ll add &#8220;A no frills plan for submitting jobs.&#8221;</p>
<p><strong>Price</strong><br />
Simple enough, this is the price that your customer will pay with this plan. Let&#8217;s charge $5 for our &#8220;Basic&#8221; price plan.</p>
<p><strong>Relist Price</strong><br />
This field will only be available if you have relisting enabled on your site. It&#8217;s the price that your customer will pay with this plan when relisting a job. We&#8217;ll charge the same $5 for relisting with our &#8220;Basic&#8221; price plan. You can set it to 0 to offer relistings.</p>
<p><strong>Job Duration</strong><br />
This setting determines how long a job is displayed before it expires. Duration is always denoted in days. If you want job listings to last a month, add 30 or 31 days. For a year, enter 365 days. If you do not want listings to expire, put zero. When it comes to listing duration, zero equals infinity. For our example, let&#8217;s use 15 days.</p>
<p>It&#8217;s important to remember that job listing duration and addons durations <strong><em>are not the same</em></strong>. We&#8217;ll get into that a little more in a few moments.</p>
<p><strong>Usage Limit</strong><br />
This setting determines the number of times the plan is selectable by the same user. Setting a value greater then 0 will limit the times the plan can be selected. After a user reaches the limit, the plan will be hidden from selection. For the &#8220;Basic&#8221; plan we&#8217;ll set it to 0, so the plan can be selected unlimited times.</p>
<p><strong>Important Note:</strong> Usage limits can be reset by an admin on each user profile under &#8216;Reset Usage&#8217;. After resetting the usage limit, the plan will be available for selection again.</p>
<h3>Featured Add-ons</h3>
<p>This section gives you the opportunity to include featured status as a part of the pricing plan. Let&#8217;s look at the options a little more closely.</p>
<p>In the &#8220;Featured Add-ons&#8221; panel, you will see check boxes marked &#8220;Included&#8221; next to &#8220;Feature on Category&#8221; and &#8220;Feature on Homepage and Listings&#8221;. Checking a box means the featured option will be included as a part of this pricing plan. Leaving it unchecked means that featured is not included in the pricing plan and must be purchased separately.</p>
<p>If you decide to include featured with the pricing plan, you need to set duration for featured status. This determines how long the job listing will remain featured as a part of this pricing plan. The duration is denoted in days. The duration can be any amount but must be the same or shorter than the job listing duration.</p>
<p>There is a lot more to featured and we&#8217;ll take a closer look later in this tutorial. For our &#8220;Basic&#8221; pricing plan, we will not enable featured.</p>
<h3>Resumes Add-ons</h3>
<p>This section gives you the opportunity to give temporary access to resumes as a part of the pricing plan. Let&#8217;s look at the options a little more closely.</p>
<p>In the &#8220;Resumes Add-ons&#8221; panel, you will see check boxes marked &#8220;Included&#8221; next to &#8220;Browse Resumes&#8221; and &#8220;View Resumes&#8221;. Checking a box means the resumes temporary access (view or/and browse) will be included as a part of this pricing plan. Leaving it unchecked means that resumes temporary access (view or/and browse) is not included in the pricing plan and must be purchased separately.</p>
<p>If you decide to include resumes access with the pricing plan, you need to set their duration. This determines for how long the user can view or/and browse resumes as a part of this pricing plan. The duration is denoted in days. The duration can be any amount but must be the same or shorter than the job listing duration.</p>
<p>For our &#8220;Basic&#8221; pricing plan, we will not enable resumes addons.</p>
<p><em><strong>Important notes:</strong></p>
<ul>
<li>Resumes Addons are only available if your site requires an active subscription to browse/view resumes (<em>JobRoller &gt; Settings &gt; Resumes</em>).</li>
<li>Once a user purchases or is offered a Resume addon he cannot choose it again until it expires. This allows for better monetization on your site as customers will need to submit jobs or purchase a subscription, to access resumes.</li>
</ul>
<p></em></p>
<h3>Job Categories</h3>
<p><em>JobRoller</em> allows you to assign pricing plans to job categories. You can assign multiple plans to one category, you can assign one plan to many categories or you can do anything in between. It&#8217;s very important to note, <strong><em>if a category does not have an associated pricing plan, users will be unable to purchase job listings in that category, unless categories are not required</em></strong>. That means, whenever you create a new category, you need to make sure you assign a pricing plan to the category.</p>
<p>To link categories to a pricing plan, simply check the categories you want in &#8220;Job Categories&#8221; in the sidebar.</p>
<p>For our example, we will choose all the available categories. Now we&#8217;re certain to have at least one pricing plan for everything on our site.</p>
<p>Once you have set your options and chosen the categories associated with the pricing plan, you can click the &#8220;Publish&#8221; button. Users can now purchase listings on your site using the &#8220;Basic&#8221; payment plan.</p>
<p><em><strong>Important note:</strong> If you don&#8217;t have job categories set as required and the job is not assigned a category, the categories-plan relation will be ignored and all the plans will be available for selection independently of their category.</em></p>
<h3>Order</h3>
<p>The order, determines the position where the plan should be displayed. A plan with a lower value will display first. Let&#8217;s set our &#8220;Basic&#8221; plan to 2, to appear right after the &#8220;Gold&#8221; plan.</p>
<h3>Closer Look at Featured</h3>
<p>With options in two different places, featured job listings can get a little confusing. Using the examples in the screenshot at the top of this post, let&#8217;s look at featured listings in detail.</p>
<p><strong>Featured not Included in Pricing Plan</strong><br />
In our &#8220;Basic&#8221; pricing plan that was created above, we opted to not include featured as part of the pricing plan. Here&#8217;s what that means to your customers when they buy a job listing.</p>
<p>If you do not have the featured addons listings enabled in the payment settings, then your customer will not get featured as part of the pricing plan and they will not have the option to pay for featured separately.<br />
<a href="https://docs.appthemes.com/files/2013/05/jobroller_job_plans_basic_dollar_left.png"><img src="https://docs.appthemes.com/files/2013/05/jobroller_job_plans_basic_dollar_left.png" alt="JobRoller Plans - No Addons" width="642" height="123" class="alignnone size-full wp-image-5038" /></a><br />
In the same example, let&#8217;s say you do have featured addons enabled in the payment settings. Featured addons would not be included in the &#8220;Basic&#8221; pricing but it could be purchased separately. In the screenshot below, you see that customers will be able to add featured at an extra cost.<br />
<a href="https://docs.appthemes.com/files/2013/05/jobroller_job_plans_basic_options_dollar_left-e1367598299762.png"><img src="https://docs.appthemes.com/files/2013/05/jobroller_job_plans_basic_options_dollar_left-e1367598299762.png" alt="JobRoller Plans - Addons" width="640" height="191" class="alignnone size-full wp-image-5039" /></a><br />
<em><strong>Important note:</strong> The featured in category addon will only be available for selection or included in the plan if a job category was assigned to the job.</em></p>
<p><strong>Addons Included in Pricing Plan</strong><br />
Now we&#8217;ll create another example pricing plan. We will create the &#8220;Gold&#8221; pricing plan shown in our original example screenshot. Here&#8217;s how it looks on the &#8220;Add New Plan&#8221; page.</p>
<p><a href="https://docs.appthemes.com/files/2013/04/jobroller_job_plan_setup_gold_plan.png"><img src="https://docs.appthemes.com/files/2013/04/jobroller_job_plan_setup_gold_plan-e1366752015143.png" alt="jobroller_job_plan_setup_gold_plan" width="640" height="520" class="alignnone size-full wp-image-4932" /></a><br />
This is going to be an expensive plan and we want give people incentive to choose this plan, so we&#8217;ll include featured and resumes addons, for 50$, and the job listing will be active for 30 days.</p>
<h3>Promotional Plans</h3>
<p>Promotional plans are a great way to engage your customers on your site and JobRoller helps you achieve it by giving you the option to create limited usage plans. These plans are limited in use and will be automatically hidden when the user reaches the selection limit. We&#8217;ll create a Free plan trial plan to exemplify a promotional plan by setting the price to 0 and the usage limit to 1. Customers will be able to purchase the plan for Free but only once. Here&#8217;s how it looks on the &#8220;Add New Plan&#8221; page.</p>
<p><a href="https://docs.appthemes.com/files/2013/04/jobroller_job_plan_setup_free_plan.png"><img src="https://docs.appthemes.com/files/2013/04/jobroller_job_plan_setup_free_plan-e1366752820301.png" alt="jobroller_job_plan_setup_free_plan" width="640" height="509" class="alignnone size-full wp-image-4933" /></a><br />
Here&#8217;s the screenshot with all the plans again.</p>
<p><a href="https://docs.appthemes.com/files/2013/05/jobroller_plans_frontend_dollar_left-e1367598540306.png"><img src="https://docs.appthemes.com/files/2013/05/jobroller_plans_frontend_dollar_left-e1367598540306.png" alt="JobRoller Plans Select" width="640" height="515" class="alignnone size-full wp-image-5044" /></a></p>
<h3>Relisting Jobs</h3>
<p>If your site is configured to enable relisting jobs, you can set a different price for the relisted job. Here&#8217;s how our plans price would display with the relist price set on our example plans.</p>
<p><a href="https://docs.appthemes.com/files/2013/05/jobroller_plans_frontend_relisting_dollar_left-e1367598218436.png"><img src="https://docs.appthemes.com/files/2013/05/jobroller_plans_frontend_relisting_dollar_left-e1367598218436.png" alt="JobRoller Plans Select - Relisting" width="640" height="514" class="alignnone size-full wp-image-5037" /></a></p>
<h3>Conclusion</h3>
<p>Now that you learned how to set up payments in the <a href="http://docs.appthemes.com/jobroller/setting-up-payments-in-jobroller-payments-settings">first part of this tutorial</a> and you have created some pricing plans after reading this part of the tutorial, you should be ready to offer the best pricing model for your site.</p>
<p>Like this tutorial? <a href="http://www.appthemes.com/subscribe/">Subscribe</a> and get the latest tutorials delivered straight to your inbox or feed reader.</p><img src="http://feeds.feedburner.com/~r/AppthemesDocs/~4/CfD1CIeZjd8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://docs.appthemes.com/jobroller/setting-up-payments-in-jobroller-pricing-plans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://docs.appthemes.com/jobroller/setting-up-payments-in-jobroller-pricing-plans/</feedburner:origLink></item>
		<item>
		<title>Setting up Payments in JobRoller: Payments Settings</title>
		<link>http://feedproxy.google.com/~r/AppthemesDocs/~3/I-QphWIoV3Q/</link>
		<comments>http://docs.appthemes.com/jobroller/setting-up-payments-in-jobroller-payments-settings/#comments</comments>
		<pubDate>Thu, 25 Apr 2013 06:39:29 +0000</pubDate>
		<dc:creator>Bruno Carreço</dc:creator>
				<category><![CDATA[JobRoller]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jobroller]]></category>
		<category><![CDATA[payments]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://docs.appthemes.com/?p=4867</guid>
		<description><![CDATA[Like most of our application themes, JobRoller allows you to charge for jobs posted to your site. With single or pack pricing plans, and lots of other pricing options, JobRoller gives you the power to create the pricing model that works best for you and your customers. Once finished, your site will be ready to [...]]]></description>
				<content:encoded><![CDATA[<p>Like most of our application themes, JobRoller allows you to charge for jobs posted to your site. With single or pack pricing plans, and lots of other pricing options, <em>JobRoller</em> gives you the power to create the pricing model that works best for you and your customers.</p>
<p>Once finished, your site will be ready to take payments from customers that want to list jobs on your JobRoller site.</p>
<h3>Getting started</h3>
<p>To begin, you will need <a href="http://www.appthemes.com/themes/jobroller/" title="JobRoller Theme" target="_blank">JobRoller</a> – version 1.7 or newer – and WordPress installed on a hosting server. You will also want to read the “<a href="https://docs.appthemes.com/jobroller/getting-started-with-jobroller/" title="Getting Started with JobRoller" target="_blank">Getting Started with JobRoller</a>” doc to get ready.</p>
<p>In order to accept payments on your site, you will need to sign up with a payment gateway service. You will also need payment gateway software to complete transactions (PayPal is included with JobRoller).</p>
<p><em>JobRoller</em> comes with PayPal and Bank Transfer as the default payment gateways. It’s free to sign up with PayPal and it is accepted in many countries around the world. If possible, we recommend starting with PayPal. You can sign up for an account at the <a href="https://www.paypal.com/" target="_blank">PayPal website</a>.</p>
<p>If you prefer not to work with PayPal or cannot get a PayPal account, other gateways are available in the <a href="http://marketplace.appthemes.com/plugins/payment-gateways/" title="Marketplace Payment Gateways" target="_blank">AppThemes Marketplace</a>. You can research and decide which is the best option for you.</p>
<p>Once you have <em>JobRoller</em> added to WordPress and an account with a payment gateway, you’re ready to proceed.</p>
<h3>Charge for Job Listings</h3>
<p>If you are going to charge for jobs, you want to enable the related option in <em>JobRoller</em>. The default setting for this is “No”, you should go to the settings page to enable it.</p>
<p>In your WordPress admin, go to <em>JobRoller &gt; Settings &gt; Jobs</em>. You should see the admin panel pictured below.</p>
<p><a href="https://docs.appthemes.com/files/2013/04/charge_job_listings-e1366734954696.png"><img src="https://docs.appthemes.com/files/2013/04/charge_job_listings-e1366734954696.png" alt="charge_job_listings" width="640" height="459" class="alignnone size-full wp-image-4884" /></a><br />
<em>&#8220;Moderate Job Listings”</em> and <em>&#8220;Edited Job Requires Approval”</em> are options worth mentioning here. If you want to review all new jobs before they are shown to the public, you will want to make sure these options are checked. Leaving the options unchecked means that all new/edited jobs will become public immediately after they are created/edited. The choice is up to you.</p>
<p><em><strong>Important note:</strong> Paid jobs ignore the moderation options and will always be immediately published.</em></p>
<p><a href="https://docs.appthemes.com/files/2013/04/moderation-e1366734974469.png"><img src="https://docs.appthemes.com/files/2013/04/moderation-e1366734974469.png" alt="moderation" width="640" height="125" class="alignnone size-full wp-image-4885" /></a></p>
<h3>Payments Settings</h3>
<p><em>JobRoller</em> needs to know a few things about how you will charge for jobs on your site. To set up these options, go to <em>Payments &gt; Settings &gt; General</em> tab. You should see something similar to the screenshot below.</p>
<p><em><strong>Important note:</strong> when you make any changes on this tab, you should press the “Save Changes” button before you navigate to another tab or page.</em></p>
<p><a href="https://docs.appthemes.com/files/2013/04/jobroller_payments_settings1-e1366742716640.png"><img src="https://docs.appthemes.com/files/2013/04/jobroller_payments_settings1-e1366742716640.png" alt="JobRoller Payments Settings" width="640" height="746" class="alignnone size-full wp-image-4912" /></a></p>
<h3>Regional</h3>
<p><em>JobRoller</em> allows you to choose the currency used to collect payments on your site. At present, you can only have one currency at a time. Click the drop down next to “Currency Selection” to select your preference.</p>
<p>Since <em>PayPal</em> is bundled with <em>JobRoller</em>, the default currencies are the currencies supported by that payment gateway. If you have added other payment gateways, you should see the currency options for the currencies supported by each gateway.</p>
<p>Below the currency selection you will find more options like:</p>
<ul>
<li>Identifier &#8211; allows you to choose between currency symbol and code</li>
<li>Position &#8211; determine where the identifier should be displayed</li>
<li>Thousands Separator &#8211; change to meet your regional price formatting</li>
<li>Decimal Sepatator &#8211; change to meet your regional price formatting</li>
<li>Tax Charge &#8211; allows you to add regional taxes to the final price</li>
</ul>
<h3>Plan Types</h3>
<p><em>JobRoller</em> supports two plan types. Both plan types offer slightly different options when you&#8217;re setting you job plans. You can read more on setting up both types of pricing plans by following the related tutorial link, below.</p>
<ul>
<li><strong>Single</strong> &#8211; Single plans are applied to every single job submitted on your site. Job listers will need to pay a pre-set price for each job they post. Read our tutorial on <a href="http://docs.appthemes.com/jobroller/setting-up-payments-in-jobroller-pricing-plans">setting up Single pricing plans in <em>JobRoller</em></a>
<li><strong>Pack</strong> &#8211; Pack plans can bundle a pre-set number of jobs. When customers purchase Packs they will be able to submit the number of jobs contained in the pack until the pack expires or after reaching the total jobs limit. Read our tutorial on <a href="http://docs.appthemes.com/jobroller/">setting up Pack plans in <em>JobRoller</em></a>
</ul>
<p><a href="https://docs.appthemes.com/files/2013/04/jobroller_plan_type.png"><img src="https://docs.appthemes.com/files/2013/04/jobroller_plan_type.png" alt="jobroller_plan_type" width="642" height="111" class="alignnone size-full wp-image-4893" /></a></p>
<p>If you choose &#8216;Pack&#8217;, as your plan type, after saving the changes, you&#8217;ll see two additional options:</p>
<ul>
<li><strong>Buy Separate Job Packs</strong> &#8211; Enables customers to purchase packs directly from their dashboard in addition to when submitting a job. It also allows site owners to enable the &#8216;Buy&#8217; button on the Packs widget</li>
<li><strong>Display Categories</strong> &#8211; Enabling this option will display the job categories on each pack</li>
</ul>
<p><a href="https://docs.appthemes.com/files/2013/04/jobroller_packs_extra_options.png"><img src="https://docs.appthemes.com/files/2013/04/jobroller_packs_extra_options.png" alt="jobroller_packs_extra_options" width="576" height="116" class="alignnone size-full wp-image-4895" /></a></p>
<h3>Add-ons</h3>
<p>This section primarily deals with settings for featured job listings and resumes access. You will have additional options for these addons in pricing plans, but these are the base options. Here, you can set the price and duration for Featured Addons (home page/listings and category) and Resumes Addons (browse/view resumes) *.</p>
<p><a href="https://docs.appthemes.com/files/2013/04/jobroller_addons.png"><img src="https://docs.appthemes.com/files/2013/04/jobroller_addons-e1366740692302.png" alt="jobroller_addons" width="640" height="242" class="alignnone size-full wp-image-4898" /></a><br />
Featured Addons are applied to jobs, while Resumes Addons are applied to users. </p>
<p>For Featured Addons, duration determines the length of time that a job is a featured job. Duration is calculated in days. Enter the number of days you want the featured status on a listing to last. If you do not want featured status to expire, enter zero.</p>
<p>For Resumes Addons, duration determines the number of days that resumes remain accessible to a user. Duration is calculated in days. Enter the number of days allowed for users to browse/view resumes. If you do not want resumes access to expire, enter zero.</p>
<p>Price is the amount you want to charge for an addon. JobRoller only allows whole number values. For example, 12 is allowed but 12.99 or 12,99 are not allowed.</p>
<p><em><strong>* Important note:</strong> Resumes Addons are only available if your site requires an active subscription to browse/view resumes (JobRoller &gt; Settings &gt; Resumes ).</em></p>
<p><a href="https://docs.appthemes.com/files/2013/04/jobrollers_subscription_options.png"><img src="https://docs.appthemes.com/files/2013/04/jobrollers_subscription_options-e1366741001688.png" alt="jobrollers_subscription_options" width="640" height="115" class="alignnone size-full wp-image-4900" /></a><br />
When you have made all your preferred changes in the General tab of the payments settings section, clicking the &#8220;Save Changes&#8221; button implement your new settings.</p>
<h3>Installed Gateways</h3>
<p>This is where your installation of <em>JobRoller</em> may differ from the screenshot above. <em>JobRoller</em> will list, in this section, all of the installed payment gateways. If you have added more gateways, you will see them listed with “PayPal” and “Bank Transfer”.</p>
<p>To enable a payment gateway, simply check the “Enable” box to the right of that gateway. If you choose multiple payment gateways, <em>JobRoller</em> will allow your customers a single choice from the gateways you have enabled. With more than one enabled, you give your customers the ability to determine the gateway that works best for them.</p>
<p><strong>Additional Payment Gateway Settings</strong><br />
You will notice in the payments settings section of the WordPress admin that there is a tab for each installed gateway. You can click each tab to see the settings for that gateway. Each payment gateway will have it&#8217;s own settings and options. You can follow the directions listed on the page or find instruction or tutorials elsewhere on our site.</p>
<p>Since <em>PayPal</em> is the default gateway for <em>JobRoller</em>, we&#8217;ll take a look at those options and how to set them up. As mentioned before, you will need a <em>PayPal</em> account in order to use it as your payment gateway. You can create an account at the <a href="https://www.paypal.com/" target="_blank">PayPal website</a>.</p>
<p><strong>PayPal Email</strong> &#8211; Add the email address used with your <em>PayPal</em> account here. Make sure it is entered correctly. If it is not exact, <em>PayPal</em> will not process your payments.</p>
<p><strong>Business/Premier Account</strong> &#8211; Check this option if you have a premier/business account. This type of accounts allow customers to automatically process recurring payments via <em>PayPal</em>.</p>
<p><em><strong>Important note:</strong> Recurring payments are only available for resumes subscriptions.</em></p>
<p><strong>PayPal Sandbox</strong> &#8211; The sandbox feature allows you to test payments with your <em>PayPal</em> account. You can read all about <a href="https://developer.paypal.com/" target="_blank">PayPal sandbox here</a>.</p>
<p><strong>Enable PDT</strong> &#8211; PDT provides an extra layer of security to payment transactions on your site. AppThemes highly recommends that PDT is <em><strong>enabled</strong></em> for your site. To find out how to add PDT to your site, read our tutorial <a href="http://docs.appthemes.com/tutorials/enable-paypal-pdt-payment-data-transfer">Enable PayPal PDT (Payment Data Transfer)</a>.</p>
<p><strong>Enable IPN</strong> &#8211; IPN works by sending messages directly between <em>PayPal</em> and your site in the background. Using this channel of communication, your site can automatically update when orders complete. To find out how to enable IPN on your site, read our tutorial <a href="http://docs.appthemes.com/tutorials/enable-paypal-ipn-instant-payment-notifications/">Enable PayPal IPN (Instant Payment Notifications)</a>.</p>
<p>Once you have added your payment gateway details, make sure to click the &#8220;Save Changes&#8221; button before moving on.<br />
<a href="https://docs.appthemes.com/files/2013/04/jobroller_paypal_settings.png"><img src="https://docs.appthemes.com/files/2013/04/jobroller_paypal_settings-e1366742261828.png" alt="jobroller_paypal_settings" width="640" height="294" class="alignnone size-full wp-image-4908" /></a></p>
<h3>Part 2: Creating Pricing Plans</h3>
<p>Now that you have edited the job listings and payments settings on your site, you&#8217;re ready to create pricing plans. Part two of this tutorial will show you how to <a href="http://docs.appthemes.com/jobroller/setting-up-payments-in-jobroller-pricing-plans">create pricing plans for JobRoller</a>.</p>
<p>Like this tutorial? <a href="http://www.appthemes.com/subscribe/">Subscribe</a> and get the latest tutorials delivered straight to your inbox or feed reader.</p><img src="http://feeds.feedburner.com/~r/AppthemesDocs/~4/I-QphWIoV3Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://docs.appthemes.com/jobroller/setting-up-payments-in-jobroller-payments-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://docs.appthemes.com/jobroller/setting-up-payments-in-jobroller-payments-settings/</feedburner:origLink></item>
		<item>
		<title>JobRoller Version 1.7</title>
		<link>http://feedproxy.google.com/~r/AppthemesDocs/~3/zc1tXWfbHd4/</link>
		<comments>http://docs.appthemes.com/jobroller/jobroller-version-1-7/#comments</comments>
		<pubDate>Mon, 22 Apr 2013 15:12:10 +0000</pubDate>
		<dc:creator>Bruno Carreço</dc:creator>
				<category><![CDATA[JobRoller]]></category>
		<category><![CDATA[jobroller]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://docs.appthemes.com/?p=4845</guid>
		<description><![CDATA[On April 22nd, 2013, JobRoller 1.7 was released. This is a major release. Fixed 46 tickets total. A breakdown of tickets can be found below. What&#8217;s New? The new AppThemes Payments API and Custom Forms are the biggest additions for this release. The Payments API is a full featured framework that can be extended with [...]]]></description>
				<content:encoded><![CDATA[<p>On April 22nd, 2013, JobRoller 1.7 was released. This is a major release. Fixed 46 tickets total. A breakdown of tickets can be found below.</p>
<h2>What&#8217;s New?</h2>
<p>The new AppThemes Payments API and Custom Forms are the biggest additions for this release. The Payments API is a full featured framework that can be extended with new gateways and options like, coupons. It also consolidates all the pricing data and options on it&#8217;s own admin menu and adds a new payment option: bank transfer. </p>
<p>Custom Forms, allow site owners to create any number of custom fields (input, option, checkbox, etc) for each job category, to be displayed for employers on the job submit form. Any values inserted will then be available on the single job page, including file downloads.</p>
<p>Please read the changelog for the full feature list.</p>
<p><strong>Notes:</strong><br />
<em>Automatic recurring payments for resumes subscriptions are only available for PayPal Business accounts (PayPal IPN must be enabled). If you don&#8217;t have a business account, subscriptions will default to manual one-off payments, and can be purchased with any gateway.</em></p>
<h2>Update Your Plugins</h2>
<p>Users with AppThemes job feeds plugins (&#8216;LinkedIn Publisher&#8217;, &#8216;Simply-Hired Publisher&#8217;, &#8216;Careerjet Publisher&#8217;) and &#8216;AppThemes Coupons&#8217; should update to the latest version to guarantee full compatibility with JobRoller 1.7. The same applies to other plugins you may have purchased from the marketplace. If you find any problem with a (previously working) plugin on the latest JobRoller version, look for an updated version on the marketplace or contact the plugin author.</p>
<h2>Upgrade Information</h2>
<p>Now you can automatically upgrade directly from your WordPress admin. Under “Appearance” =&gt; “Themes”, you’ll see an upgrade link next to JobRoller. If you don’t, check back later. The AppThemes upgrade check API runs twice a day. It’s important to note that using this auto updater will overwrite any custom coding done to the theme. Customers who have made theme code changes will need to manually upgrade instead.</p>
<p>If you prefer the old fashion way or have made core theme modifications (which is not recommended), visit <a href="https://www.appthemes.com/login/">AppThemes</a> to download the full version.</p>
<h2>Fixes</h2>
<ul>
<li>Some custom tables being concatenated with $wpdb-&gt;prefix instead of using $wpdb-&gt;table_name</li>
<li>No email notifications sent to buyer after purchasing a resume subscription</li>
<li>Banner alignment when using the default theme</li>
<li>No background color on field labels and form steps</li>
<li>Missing translations on the backend</li>
<li>Duplicate key name database warnings</li>
<li>Browse/view resumes visibility better integrated with the backend role visibility options</li>
<li>Searches by keyword+location defaulting to OR instead of AND</li>
<li>Re-listed job does not follow the expiry period on &#8216;Default Expiration Days&#8217;</li>
</ul>
<h2>Changes</h2>
<ul>
<li>BACKEND
<ul>
<li><span style="line-height: 1.5em">Added AppThemes custom forms to the job submit form:</span>
<ul>
<li><span style="line-height: 1.5em">Custom forms are created on the backend and assigned to single or multiple job categories</span></li>
<li><span style="line-height: 1.5em">Custom form fields are displayed when job listers select the related job category</span></li>
<li><span style="line-height: 1.5em">Custom fields values are displayed on the job page</span></li>
</ul>
</li>
<li><span style="line-height: 1.5em">Replaced old pricing structure, including job packs and resumes pricing with AppThemes payments framework. This means unlimited pricing plans for single pricing, job packs or resumes subscriptions. All orders and plans are now managed on a new payments menu</span>
<ul>
<li><span style="line-height: 1.5em">Payments framework features</span>
<ul>
<li><span style="line-height: 1.5em">Adds Bank Transfer as a new payment option, besides PayPal</span></li>
<li><span style="line-height: 1.5em">Compatible with any AppThemes gateway available on the marketplace (2Checkout, Authorize.NET, Google Wallet, Stripe, etc)</span></li>
<li>Compatible with AppThemes Coupons, available on the marketplace</li>
<li>Allow tax charge</li>
<li>Multiple currencies</li>
<li>Detailed Orders listing filterable by status</li>
<li>Create infinite Job Plans with usage limit for one or multiple job categories</li>
<li>Create infinite Resumes Plans (subscriptions) with usage limit and trial option</li>
<li>Included pricing addons. These are purchase options that can be included Free on Job plans:
<ul>
<li>Feature Addon (feature jobs on homepage and listings, feature job in category). Can be limited to duration or usage</li>
<li>Resumes Addon (browse resumes, view resumes). Can be limited to duration or usage</li>
</ul>
</li>
</ul>
</li>
</ul>
<ul>
<ul>
<li>Separate pricing addons. These are additional optional purchase options that can have a price and duration. Available addons:
<ul>
<li>Feature Addon (feature jobs on homepage and listings, feature job in category)</li>
<li>Resumes Addon (browse resumes, view resumes)</li>
</ul>
</li>
</ul>
</ul>
<ul>
<ul>
<li>Select plan type: Single, Pack</li>
<li>Additional editable duration on the backend job page: job duration, and featured addons duration</li>
<li>Adds an intermediate step on the job submit form for the job Plan selection &#8216;Select Plan&#8217;</li>
</ul>
</ul>
</li>
<li>JobRoller dashboard now uses AppThemes framework and displays more information</li>
<li>Added two additional panels to Resumes backend with Education/Experience (uses TinyMCE) and custom fields: salary, email, telephone, mobile</li>
<li>Added Google mini map location sidebar to the Resumes backend (similar to backend job page)</li>
<li>Better backend options organization and grouping</li>
<li>Uses meta data to assign featured jobs instead of &#8216;Featured&#8217; category (note: you should delete the &#8216;Featured&#8217; category after upgrading)</li>
<li>Removed obsolete menu pages (moved to the new payments menu): Pricing, Job Packs and Orders</li>
<li>Removed obsolete Tabs (managed internally): Pages</li>
<li>New template page &#8216;Terms &amp; Conditions&#8217; automatically added to WordPress Pages</li>
<li>Additional security options to display reCaptcha on contact forms (including the resumes contact form) and &#8216;Apply Online&#8217; form</li>
<li>New backend options</li>
</ul>
<ul>
<ul>
<li>JobRoller &gt; Settings &gt; Jobs (Job Options) &gt; Charge for Job Listings</li>
<li>JobRoller &gt; Settings &gt; Jobs (Job Listings) &gt; Regular Jobs per Page (replaces the default WordPress &#8216;Blog pages show at most&#8217; under Settings &gt; Reading)</li>
<li>JobRoller &gt; Settings &gt; Jobs (Job Listings) &gt; Featured Jobs per Page</li>
<li>JobRoller &gt; Settings &gt; Jobs (Job Listings) &gt; Featured Jobs Sort Method</li>
<li>JobRoller &gt; Settings &gt; Resumes (Job Seeker Options) &gt; Enable Recruiters Registration</li>
<li>JobRoller &gt; Settings &gt; Security (ReCaptcha) &gt; Enable on Registration Form</li>
<li>JobRoller &gt; Settings &gt; Security (ReCaptcha) &gt; Enable on Contact Forms</li>
<li>JobRoller &gt; Settings &gt; Security (ReCaptcha) &gt; Enable on Apply Online Form</li>
</ul>
<li>Replaced old &#8216;Start/End Subscription&#8217;, &#8216;Start/End Trial&#8217; with single &#8216;Manage Subscriptions&#8217; on the backend Subscriptions list, that links to the user profile</li>
<li>New actions available for admins on each user profile: Reset Usage (resets plan usage to 0 for plans with usage limit so customers can select the plan again until the usage is reached again)</li>
<li>Jobs submitted on the backend are now included on the job alerts</li>
<li>Added &#8216;Expired&#8217; status to expired jobs. Replaces the old &#8216;private&#8217; status. Jobs can be filtered on the backend by the new &#8216;Expired&#8217; status</li>
<li>Additional &#8216;Expire Date&#8217; column on the backend job listings.</li>
<li>Additional columns on the Resumes backend listings: &#8216;Job Types&#8217;, &#8216;Job Categories&#8217;, &#8216;Job Specialties&#8217;, &#8216;Spoken Languages&#8217; and &#8216;Location&#8217;</li>
<li>Use single sprite for JobRoller and Jobs menu icon. Job menu icon was replaced with opened briefcase</li>
<li>Updated CSS classes to native WP classes on backend buttons</li>
</ul>
</li>
<li>FRONTEND
<ul>
<li>New selectable user Role: Recruiter. By default, Recruiters can submit jobs and browse/view resumes (if resumes subscriptions are disabled), while Employers (job listers) can only submit jobs</li>
<li>New orders Tab on the users dashboard with information on every user order. Filterable by order status</li>
<li>Page auto scroll down on errors when applying to jobs</li>
<li>Members are now redirected to their dashboard instead of the home page, after logging in</li>
<li>Added pagination to each Tab on the users dashboard</li>
<li>Allow changing password on user profile when password is disabled on registration</li>
<li>Job recommendations do not require a keyword anymore. Job Seekers can set their job preferences and get dashboard recommendations by filling only the job type</li>
<li>Better CSS styling for the &#8216;Buy Packs&#8217; widget</li>
</ul>
</li>
<li>GENERIC
<ul>
<li>Ping notifications on published jobs (backend/frontend). Update services (WordPress &gt; Settings &gt; Writing) are not exclusive to posts anymore</li>
<li>Updated Google geocoding API to v.3</li>
<li>Updated Google CDN jQuery version to 1.8.3</li>
<li>Unified email subject on all automatic email notifications to &#8216;[Site Name] Subject&#8217; (i.e: [My JobRoller Site] New Job Submitted )</li>
<li>Secured values from $_GET with WP esc_attr() for additional security</li>
<li>Use WP function wp_remote_get() instead of file_get_contents() for remote URL&#8217;s</li>
<li>Removed &#8216;jobroller-no-admin.pot&#8217; file (recommended plugin: <a href="http://wordpress.org/extend/plugins/wp-native-dashboard/">http://wordpress.org/extend/plugins/wp-native-dashboard/</a>)</li>
<li>Renamed &#8216;admin-style.css&#8217; to &#8216;admin.css&#8217;</li>
<li>Added GNU license to &#8216;styles.css&#8217; header</li>
</ul>
</li>
</ul>
<h2>Files Modified</h2>

<div class="wp_syntax"><table><tr><td class="code"><pre class="txt" style="font-family:monospace;">Added			images/admin-menu.png
Added			images/file-excel.png
Added			images/file-image.png
Added			images/file-other.png
Added			images/file-pdf.png
Added			images/file-word.png
Added			images/recurring.png
Added			includes/admin/admin-dashboard.php
Added			includes/admin/admin-payments-pricing.php
Added			includes/admin/admin-payments-settings.php
Added			includes/admin/admin.css
Added			includes/admin/theme-upgrade.php
Added			includes/custom-forms
Added			includes/custom-forms.php
Added			includes/dashboard-orders.php
Added			includes/dashboard-packs.php
Added			includes/dashboard-resumes.php
Added			includes/forms/confirm-job/confirm-job-form-preview.php
Added			includes/forms/order/order-checkout.php
Added			includes/forms/order/order-gateway.php
Added			includes/forms/order/order-summary.php
Added			includes/forms/select-plan/select-plan-packs-form.php
Added			includes/forms/select-plan/select-plan-single-form.php
Added			includes/forms/select-plan/select-plan.php
Added			includes/forms/subscribe-resumes/subscribe-resumes-form.php
Added			includes/job-form-custom-fields.php
Added			includes/job-form.php
Added			includes/job-status.php
Added			includes/js/job-form-scripts.js
Added			includes/js/jquery.validate.min.js
Added			includes/payments
Added			includes/plan-activate.php
Added			includes/plan-purchase.php
Added			includes/single-pack.php
Added			includes/template-tags.php
Added			includes/theme-featured.php
Added			includes/theme-options.php
Added			includes/theme-packs.php
Added			includes/theme-payments.php
Added			includes/uploads.php
Added			includes/views.php
Added			order-checkout.php
Added			order-gateway.php
Added			order-summary.php
Added			styles/jqueryui/images/ui-bg_flat_0_aaaaaa_40x100.png
Added			styles/jqueryui/images/ui-bg_flat_75_ffffff_40x100.png
Added			styles/jqueryui/images/ui-bg_glass_55_fbf9ee_1x400.png
Added			styles/jqueryui/images/ui-bg_glass_65_ffffff_1x400.png
Added			styles/jqueryui/images/ui-bg_glass_75_dadada_1x400.png
Added			styles/jqueryui/images/ui-bg_glass_75_e6e6e6_1x400.png
Added			styles/jqueryui/images/ui-bg_glass_95_fef1ec_1x400.png
Added			styles/jqueryui/images/ui-bg_highlight-soft_75_cccccc_1x100.png
Added			styles/jqueryui/images/ui-icons_222222_256x240.png
Added			styles/jqueryui/images/ui-icons_2e83ff_256x240.png
Added			styles/jqueryui/images/ui-icons_454545_256x240.png
Added			styles/jqueryui/images/ui-icons_888888_256x240.png
Added			styles/jqueryui/images/ui-icons_cd0a0a_256x240.png
Added			styles/jqueryui/jquery-ui.css
Added			tpl-purchase-pack.php
Added			tpl-purchase-resume-subscription.php
Added			tpl-terms-conditions.php
Deleted			images/paypal-lg.png
Deleted			images/paypal_verified.gif
Deleted			includes/admin/admin-jobpacks.php
Deleted			includes/admin/admin-orders.php
Deleted			includes/admin/admin-style.css
Deleted			includes/classes/orders.class.php
Deleted			includes/classes/packs.class.php
Deleted			includes/forms/confirm-job/confirm-job-process.php
Deleted			includes/forms/edit-job/edit-job-form.php
Deleted			includes/forms/edit-job/edit-job-process.php
Deleted			includes/forms/edit-job/relist-job-process.php
Deleted			includes/forms/lister-packs/lister-packs-process.php
Deleted			includes/forms/submit-job/submit-job-process.php
Deleted			includes/forms/subscribe-resumes/subcribe-resumes-form.php
Deleted			includes/gateways/admin-gateway-values.php
Deleted			includes/gateways/index.php
Deleted			includes/gateways/paypal.php
Deleted			jobroller-no-admin.pot
Deleted			tpl-add-new-confirm.php
Modified		404.php
Modified		archive-job_listing.php
Modified		archive-resume.php
Modified		changed_files.txt
Modified		changelog.txt
Modified		framework
Modified		functions.php
Modified		header-resume-search.php
Modified		header-search.php
Modified		header.php
Modified		includes/admin/admin-alerts-subscribers.php
Modified		includes/admin/admin-enqueue.php
Modified		includes/admin/admin-options.php
Modified		includes/admin/admin-post-types.php
Modified		includes/admin/admin-scripts.js
Modified		includes/admin/admin-subscriptions.php
Modified		includes/admin/admin-values.php
Modified		includes/admin/install-script.php
Modified		includes/admin/write-panel.php
Modified		includes/appthemes-functions.php
Modified		includes/featured-jobs.php
Modified		includes/forms/application/application-form.php
Modified		includes/forms/application/application-process.php
Modified		includes/forms/confirm-job/confirm-job-form.php
Modified		includes/forms/filter/filter-process.php
Modified		includes/forms/lister-packs/lister-packs-form.php
Modified		includes/forms/login/login-form.php
Modified		includes/forms/preview-job/preview-job-form.php
Modified		includes/forms/register/register-form.php
Modified		includes/forms/register/register-process.php
Modified		includes/forms/resume/contact_parts.php
Modified		includes/forms/seeker-prefs/seeker-prefs-form.php
Modified		includes/forms/submit-job/submit-job-form.php
Modified		includes/forms/submit-resume/submit-resume-form.php
Modified		includes/forms/submit-resume/submit-resume-process.php
Modified		includes/indeed/theme-indeed.php
Modified		includes/sidebar-nav.php
Modified		includes/sidebar-sjob.php
Modified		includes/sidebar-sresume.php
Modified		includes/sidebar-user.php
Modified		includes/theme-actions.php
Modified		includes/theme-alerts.php
Modified		includes/theme-cron.php
Modified		includes/theme-emails.php
Modified		includes/theme-enqueue.php
Modified		includes/theme-functions.php
Modified		includes/theme-geolocation.php
Modified		includes/theme-header.php
Modified		includes/theme-hooks.php
Modified		includes/theme-log.php
Modified		includes/theme-resumes.php
Modified		includes/theme-stats.php
Modified		includes/theme-support.php
Modified		includes/theme-users.php
Modified		includes/theme-widgets.php
Modified		index.php
Modified		jobroller.pot
Modified		loop-job.php
Modified		loop-resume.php
Modified		search-resume.php
Modified		search.php
Modified		single-job_listing.php
Modified		single-resume.php
Modified		style.css
Modified		styles/style-basic.css
Modified		styles/style-default.css
Modified		styles/style-pro-blue.css
Modified		styles/style-pro-gray.css
Modified		styles/style-pro-green.css
Modified		styles/style-pro-orange.css
Modified		styles/style-pro-red.css
Modified		taxonomy-job.php
Modified		tpl-contact.php
Modified		tpl-edit-job.php
Modified		tpl-edit-resume.php
Modified		tpl-job-seeker-dashboard.php
Modified		tpl-jobs-by-date.php
Modified		tpl-login.php
Modified		tpl-myjobs.php
Modified		tpl-profile.php
Modified		tpl-submit.php
Modified		wrapper.php</pre></td></tr></table></div>

<img src="http://feeds.feedburner.com/~r/AppthemesDocs/~4/zc1tXWfbHd4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://docs.appthemes.com/jobroller/jobroller-version-1-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://docs.appthemes.com/jobroller/jobroller-version-1-7/</feedburner:origLink></item>
		<item>
		<title>ClassiPress Version 3.3</title>
		<link>http://feedproxy.google.com/~r/AppthemesDocs/~3/CFDcXEAVkUY/</link>
		<comments>http://docs.appthemes.com/classipress/classipress-version-3-3/#comments</comments>
		<pubDate>Sat, 20 Apr 2013 01:52:21 +0000</pubDate>
		<dc:creator>meloniq</dc:creator>
				<category><![CDATA[ClassiPress]]></category>
		<category><![CDATA[classipress]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://docs.appthemes.com/?p=4728</guid>
		<description><![CDATA[On April 19th, 2013, ClassiPress 3.3 was released. This is a maintenance and major new release. Fixed 79 tickets total. A breakdown of tickets can be found below. Upgrade Information Use the AppThemes Updater Plugin to automatically update the theme, or visit www.appthemes.com and click on My Account to download the updated version. Fixes Fixed [...]]]></description>
				<content:encoded><![CDATA[<p>On April 19th, 2013, ClassiPress 3.3 was released. This is a maintenance and major new release. Fixed 79 tickets total. A breakdown of tickets can be found below.</p>
<h2>Upgrade Information</h2>
<p>Use the <a href="http://www.appthemes.com/blog/new-plugin-to-keep-your-themes-healthy/">AppThemes Updater Plugin</a> to automatically update the theme, or visit www.appthemes.com and click on My Account to download the updated version.</p>
<h2>Fixes</h2>
<ul>
<li>Fixed incompatibility with WP Reading settings</li>
<li>Fixed error in cp_breadcrumb() when theme used with Wisija plugin</li>
<li>Fixed notices in blog post widget</li>
<li>Corrected misleading information under &#8216;Allow ad relisting&#8217; option</li>
<li>Fixed search issue when WP is installed in its own directory</li>
<li>Fixed pre-pending values with a slash in &#8216;Edit ad&#8217; form</li>
<li>Fixed modifying widget queries while searching site</li>
<li>Fixed &#8216;Approved ad&#8217; notification was sent for blog posts</li>
<li>Fixed min/max price in refine results widget, was including prices of not published ads</li>
<li>Fixed ajax calls when FORCE_SSL_ADMIN is set</li>
<li>Fixed issue where user had possibility to exceed images limit</li>
<li>Fixed missing styles for current menu item</li>
<li>Fixed issue where browser didn&#8217;t display last position if back button clicked</li>
<li>Fixed issue with conditional tags in footer section</li>
<li>Added additional server side validation for contact form</li>
<li>Fixed price display for child categories when &#8216;allow parent category posting&#8217; option was set to &#8216;no&#8217;</li>
<li>Fixed issue with border under long categories names in directory style</li>
<li>Fixed issue with text alignment and long categories names in dropdown menu</li>
<li>Fixed &#8216;allow html&#8217; option which was not disabling auto-embeds on WordPress 3.5</li>
<li>Fixed many issues with timezones</li>
<li>Fixed display date format in many places</li>
<li>Fixed issue where disabling password on registration page was disabling it on edit profile page</li>
<li>Fixed issue where ad categories widget could be used just once</li>
<li>Fixed issue where creating custom fields and forms with non-latin names could cause generating invalid internal names</li>
</ul>
<h2>Changes</h2>
<ul>
<li>Implemented new Payments module, payment gateways from Marketplace are now compatible</li>
<li>Removed &#8216;Coupons module&#8217;, use AppThemes Coupons plugin instead</li>
<li>Coupons from old module are converted to AppThemes Coupons plugin format while updating theme</li>
<li>Transactions from old module are converted to new format while updating theme</li>
<li>Implemented new settings pages, settings are converted to new format while updating theme</li>
<li>Changed template files names for home page (to tpl-ads-home.php) and blog page (to index.php)</li>
<li>Added &#8216;Sold ads&#8217; widget</li>
<li>Added &#8216;Featured ads&#8217; widget</li>
<li>Added responsive styling to front end pages</li>
<li>Navigation menu becomes native select menu at smaller screen sizes (responsive)</li>
<li>Switch to browser uploader works now without reloading page</li>
<li>Removed &#8216;Save Changes&#8217; button from the top of settings page</li>
<li>Changed Turkish currency code from &#8216;YTL&#8217; to &#8216;TRY&#8217;</li>
<li>Removed changing to pretty permalinks on theme installation</li>
<li>Improved validation of &#8216;dashboard&#8217; and &#8216;edit ad&#8217; pages</li>
<li>Details of purchase with coupon is now available on Orders page</li>
<li>Moved many inline javascripts to theme-scripts.js file</li>
<li>Updated external jquery, colorbox, and validation js libraries</li>
<li>Removed &#8216;paypal email&#8217; field from profile page</li>
<li>Added links to sample csv files on importer page</li>
<li>Added items number control to top ads, categories, and tags widgets</li>
<li>Removed inline sexybookmarks/shareaholic code from theme, plugin has an option to choose place</li>
<li>Updated google maps api library url</li>
<li>Ad price formatting is handled now by new payments module</li>
<li>Removed classipress-no-admin.pot translation file</li>
<li>Selectbox js library is now optional</li>
<li>Changed expire date format to &#8216;Y-m-d H:i:s&#8217;</li>
<li>Cron emails changed to html format</li>
<li>Sidebar container is now floated to the right side</li>
<li>Added disabling &#8216;submit&#8217; button if uploading images is still in progress</li>
<li>Removed superfish js library</li>
<li>Including many template files with get_template_part(), possibility to override by child theme</li>
<li>Located many template images, possibility to override by child theme</li>
<li>Added reset statistics link on single ad page and admin option to reset all statistics</li>
<li>Added action and filter hooks into cp_get_ad_details() function</li>
<li>Added feature to display current website time in footer section</li>
<li>Added facebook page icon option in the top bar</li>
<li>Added compatibility with WPML plugin, need to install free AppThemes WPML Bridge plugin</li>
<li>Added feature to ping &#8216;update services&#8217; while publish ad listing</li>
</ul>
<h2>Files Modified</h2>

<div class="wp_syntax"><table><tr><td class="code"><pre class="txt" style="font-family:monospace;">Modified    archive-ad_listing.php
Modified    author.php
Modified    changelog.txt
Deleted    classipress-no-admin.pot
Modified    classipress.pot
Modified    examples/ads-with-attachments.csv
Modified    examples/ads.csv
Modified    examples/classipress-child/functions.php
Added    examples/classipress-child/includes/child-views.php
Deleted    examples/classipress-child/index.php
Added    examples/classipress-child/tpl-featured-ads-home.php
Modified    featured.php
Modified    footer.php
Modified    framework
Modified    functions.php
Modified    header.php
Added    images/chart-bar-cross.png
Added    images/checkmark.png
Added    images/cp_logo_black_small.png
Added    images/cp_logo_white_small.png
Added    images/icon_facebook.gif
Added    images/minus.png
Added    images/plus.png
Modified    includes/admin/admin-addons.php
Added    includes/admin/admin-dashboard.php
Modified    includes/admin/admin-enqueue.php
Modified    includes/admin/admin-notices.php
Modified    includes/admin/admin-options.php
Modified    includes/admin/admin-post-types.php
Modified    includes/admin/admin-scripts.js
Added    includes/admin/admin-settings.php
Modified    includes/admin/admin-style.css
Modified    includes/admin/admin-updates.php
Modified    includes/admin/admin-values.php
Modified    includes/admin/install-script.php
Modified    includes/admin/write-panel.php
Modified    includes/appthemes-functions.php
Modified    includes/forms/step-functions.php
Modified    includes/forms/step1-membership.php
Modified    includes/forms/step1.php
Modified    includes/forms/step2-membership.php
Modified    includes/forms/step2.php
Modified    includes/forms/step3-membership.php
Modified    includes/forms/step3.php
Deleted    includes/gateways/admin-gateway-values.php
Deleted    includes/gateways/banktransfer/banktransfer.php
Deleted    includes/gateways/banktransfer/index.php
Deleted    includes/gateways/gateway.php
Deleted    includes/gateways/index.php
Deleted    includes/gateways/paypal/index.php
Deleted    includes/gateways/paypal/ipn.php
Deleted    includes/gateways/paypal/paypal.php
Deleted    includes/gateways/process.php
Modified    includes/js/colorbox/colorbox.css
Added    includes/js/colorbox/i18n/jquery.colorbox-cs.js
Added    includes/js/colorbox/i18n/jquery.colorbox-da.js
Added    includes/js/colorbox/i18n/jquery.colorbox-de.js
Added    includes/js/colorbox/i18n/jquery.colorbox-es.js
Added    includes/js/colorbox/i18n/jquery.colorbox-fr.js
Added    includes/js/colorbox/i18n/jquery.colorbox-it.js
Added    includes/js/colorbox/i18n/jquery.colorbox-kr.js
Added    includes/js/colorbox/i18n/jquery.colorbox-nl.js
Added    includes/js/colorbox/i18n/jquery.colorbox-pl.js
Added    includes/js/colorbox/i18n/jquery.colorbox-pt-br.js
Added    includes/js/colorbox/i18n/jquery.colorbox-ru.js
Modified    includes/js/colorbox/images/controls.png
Added    includes/js/colorbox/images/ie6/borderBottomCenter.png
Added    includes/js/colorbox/images/ie6/borderBottomLeft.png
Added    includes/js/colorbox/images/ie6/borderBottomRight.png
Added    includes/js/colorbox/images/ie6/borderMiddleLeft.png
Added    includes/js/colorbox/images/ie6/borderMiddleRight.png
Added    includes/js/colorbox/images/ie6/borderTopCenter.png
Added    includes/js/colorbox/images/ie6/borderTopLeft.png
Added    includes/js/colorbox/images/ie6/borderTopRight.png
Deleted    includes/js/colorbox/images/internet_explorer/borderBottomCenter.png
Deleted    includes/js/colorbox/images/internet_explorer/borderBottomLeft.png
Deleted    includes/js/colorbox/images/internet_explorer/borderBottomRight.png
Deleted    includes/js/colorbox/images/internet_explorer/borderMiddleLeft.png
Deleted    includes/js/colorbox/images/internet_explorer/borderMiddleRight.png
Deleted    includes/js/colorbox/images/internet_explorer/borderTopCenter.png
Deleted    includes/js/colorbox/images/internet_explorer/borderTopLeft.png
Deleted    includes/js/colorbox/images/internet_explorer/borderTopRight.png
Modified    includes/js/colorbox/jquery.colorbox-min.js
Modified    includes/js/colorbox/jquery.colorbox.js
Modified    includes/js/jcarousellite.js
Added    includes/js/jcarousellite.min.js
Deleted    includes/js/jcarousellite_1.0.1.js
Added    includes/js/jquery.footable.js
Added    includes/js/jquery.tinynav.js
Deleted    includes/js/superfish.js
Modified    includes/js/theme-scripts.js
Modified    includes/js/validate/additional-methods.js
Added    includes/js/validate/additional-methods.min.js
Modified    includes/js/validate/changelog.txt
Modified    includes/js/validate/jquery.validate.js
Modified    includes/js/validate/jquery.validate.min.js
Modified    includes/js/validate/localization/messages_ar.js
Modified    includes/js/validate/localization/messages_bg.js
Modified    includes/js/validate/localization/messages_ca.js
Deleted    includes/js/validate/localization/messages_cn.js
Modified    includes/js/validate/localization/messages_cs.js
Modified    includes/js/validate/localization/messages_da.js
Modified    includes/js/validate/localization/messages_de.js
Modified    includes/js/validate/localization/messages_el.js
Modified    includes/js/validate/localization/messages_es.js
Added    includes/js/validate/localization/messages_et.js
Modified    includes/js/validate/localization/messages_eu.js
Modified    includes/js/validate/localization/messages_fa.js
Modified    includes/js/validate/localization/messages_fi.js
Modified    includes/js/validate/localization/messages_fr.js
Deleted    includes/js/validate/localization/messages_ge.js
Modified    includes/js/validate/localization/messages_he.js
Added    includes/js/validate/localization/messages_hr.js
Modified    includes/js/validate/localization/messages_hu.js
Modified    includes/js/validate/localization/messages_it.js
Modified    includes/js/validate/localization/messages_ja.js
Added    includes/js/validate/localization/messages_ka.js
Modified    includes/js/validate/localization/messages_kk.js
Modified    includes/js/validate/localization/messages_lt.js
Modified    includes/js/validate/localization/messages_lv.js
Added    includes/js/validate/localization/messages_my.js
Modified    includes/js/validate/localization/messages_nl.js
Modified    includes/js/validate/localization/messages_no.js
Modified    includes/js/validate/localization/messages_pl.js
Added    includes/js/validate/localization/messages_pt_BR.js
Added    includes/js/validate/localization/messages_pt_PT.js
Deleted    includes/js/validate/localization/messages_ptbr.js
Deleted    includes/js/validate/localization/messages_ptpt.js
Modified    includes/js/validate/localization/messages_ro.js
Modified    includes/js/validate/localization/messages_ru.js
Deleted    includes/js/validate/localization/messages_se.js
Modified    includes/js/validate/localization/messages_si.js
Modified    includes/js/validate/localization/messages_sk.js
Modified    includes/js/validate/localization/messages_sl.js
Modified    includes/js/validate/localization/messages_sr.js
Added    includes/js/validate/localization/messages_sv.js
Modified    includes/js/validate/localization/messages_th.js
Modified    includes/js/validate/localization/messages_tr.js
Deleted    includes/js/validate/localization/messages_tw.js
Deleted    includes/js/validate/localization/messages_ua.js
Added    includes/js/validate/localization/messages_uk.js
Modified    includes/js/validate/localization/messages_vi.js
Added    includes/js/validate/localization/messages_zh.js
Added    includes/js/validate/localization/messages_zh_TW.js
Modified    includes/js/validate/localization/methods_nl.js
Added    includes/payments
Modified    includes/sidebar-blog-posts.php
Modified    includes/sidebar-contact.php
Modified    includes/sidebar-gmap.php
Modified    includes/sidebar-popular.php
Modified    includes/theme-actions.php
Modified    includes/theme-comments.php
Modified    includes/theme-cron.php
Modified    includes/theme-deprecated.php
Modified    includes/theme-emails.php
Modified    includes/theme-enqueue.php
Modified    includes/theme-footer.php
Modified    includes/theme-functions.php
Modified    includes/theme-header.php
Modified    includes/theme-hooks.php
Added    includes/theme-options.php
Added    includes/theme-payments.php
Modified    includes/theme-profile.php
Modified    includes/theme-refine.php
Modified    includes/theme-searchbar.php
Modified    includes/theme-security.php
Modified    includes/theme-stats.php
Modified    includes/theme-widgets.php
Modified    includes/views.php
Modified    index.php
Modified    loop-ad_listing.php
Deleted    loop-featured.php
Added    loop-popular.php
Added    order-checkout.php
Added    order-gateway.php
Added    order-summary.php
Modified    page.php
Modified    search.php
Modified    sidebar-ad.php
Modified    sidebar-blog.php
Modified    sidebar-user.php
Modified    sidebar.php
Modified    single-ad_listing.php
Modified    style.css
Modified    styles/aqua-black.css
Modified    styles/aqua.css
Modified    styles/blue-black.css
Modified    styles/blue.css
Modified    styles/green-black.css
Modified    styles/green.css
Modified    styles/red-black.css
Modified    styles/red.css
Modified    styles/teal-black.css
Modified    styles/teal.css
Modified    taxonomy-ad_cat.php
Modified    taxonomy-ad_tag.php
Deleted    tpl-add-new-confirm.php
Modified    tpl-add-new.php
Added    tpl-ads-home.php
Deleted    tpl-blog.php
Modified    tpl-categories.php
Modified    tpl-dashboard.php
Modified    tpl-edit-item.php
Deleted    tpl-membership-confirm.php
Modified    tpl-membership-purchase.php
Modified    tpl-profile.php
Modified    tpl-registration.php
Modified    wrapper.php</pre></td></tr></table></div>

<img src="http://feeds.feedburner.com/~r/AppthemesDocs/~4/CFDcXEAVkUY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://docs.appthemes.com/classipress/classipress-version-3-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://docs.appthemes.com/classipress/classipress-version-3-3/</feedburner:origLink></item>
		<item>
		<title>Setting up Payments in ClassiPress 3.3</title>
		<link>http://feedproxy.google.com/~r/AppthemesDocs/~3/6NcoZ3BGwiQ/</link>
		<comments>http://docs.appthemes.com/classipress/setting-up-payments-in-classipress-3-3/#comments</comments>
		<pubDate>Thu, 18 Apr 2013 02:39:53 +0000</pubDate>
		<dc:creator>meloniq</dc:creator>
				<category><![CDATA[ClassiPress]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[classipress]]></category>
		<category><![CDATA[payments]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://docs.appthemes.com/?p=4787</guid>
		<description><![CDATA[Like most of our application themes, ClassiPress allows you to charge for ads posted to your site. With ad and membership packages, and lots of other pricing options, ClassiPress gives you the power to create the pricing model that works best for you and your customers. Once finished, your site will be ready to take [...]]]></description>
				<content:encoded><![CDATA[<p>Like most of our application themes, ClassiPress allows you to charge for ads posted to your site. With ad and membership packages, and lots of other pricing options, ClassiPress gives you the power to create the pricing model that works best for you and your customers.</p>
<p>Once finished, your site will be ready to take payments from customers that want to list on your classified ads site.</p>
<h3>Getting started</h3>
<p>To begin, you will need <a href="http://www.appthemes.com/themes/classipress/" title="ClassiPress Theme" target="_blank">ClassiPress</a> – version 3.3 or newer – and WordPress installed on a hosting server. You will also want to read the “<a href="http://docs.appthemes.com/classipress/getting-started-with-classipress/" title="Getting Started with ClassiPress" target="_blank">Getting Started with ClassiPress</a>” doc to get ready.</p>
<p>In order to accept payments on your site, you will need to sign up with a payment gateway service. You will also need payment gateway software to complete transactions.</p>
<p>ClassiPress comes with PayPal and Bank Transfer as the default payment gateways. It’s free to sign up with PayPal and it is accepted in many countries around the world. If possible, we recommend starting with PayPal. You can sign up for an account at the <a href="https://www.paypal.com/" target="_blank">PayPal website</a>.</p>
<p>If you prefer not to work with PayPal or cannot get a PayPal account, AppThemes sells plugins for payment gateways in our <a href="http://marketplace.appthemes.com/plugins/payment-gateways/" title="Marketplace Payment Gateways" target="_blank">marketplace</a>. You can research and decide which is the best option for you.</p>
<p>Once you have ClassiPress added to WordPress and an account with a payment gateway, you’re ready to proceed.</p>
<h3>Pricing Settings</h3>
<p>If you are going to charge for listings, you want to enable this in ClassiPress. The default setting for this is “off”, you should go to the pricing settings panel to enable it.</p>
<p>In your WordPress admin, go to ClassiPress &gt; Pricing. You should see the admin panel pictured below.</p>
<p><a href="https://docs.appthemes.com/files/2013/04/classipress-pricing-settings.png"><img src="https://docs.appthemes.com/files/2013/04/classipress-pricing-settings.png" alt="ClassiPress Pricing Settings" width="640" height="569" class="aligncenter size-full wp-image-4827" /></a></p>
<p>Make sure “Charge for Listings” is checked, you have selected &#8220;Pricing model&#8221; that is suitable for your site and customers, and click the “Save Changes” button.</p>
<p>Pricing Models:</p>
<ul>
<li><strong>Fixed Price per Ad</strong> &#8211; One price for any ad, regardless of category. To use this pricing model, you will need to <a href="http://docs.appthemes.com/classipress/creating-an-ad-pack/" target="_blank">create at least one ad pack</a>.</li>
<li><strong>Price per Category</strong> &#8211; Allows you to set different prices for ads listed in each category. Choose this option, click the &#8220;Save Changes&#8221; button and a &#8220;Price per Category&#8221; tab will appear.</li>
<li><strong>% of Sellers Ad Price</strong> &#8211; Price to list ad is calculated as a percentage of the price of the item advertised. For example, let&#8217;s say you choose this option and set the percentage to 1%. A customer wants to list their boat for $10,000 on your site. The customer would then pay $100 for the ad. If you choose this option, be sure to enter a value for &#8220;% of Sellers Ad Price&#8221;.</li>
<li><strong>Only Charge for Featured Ads</strong> &#8211; All ads are free. Customers are only charged if they opt to have their ad listed as &#8220;featured on home&#8221;. Make sure you have enabled &#8220;Featured slider&#8221; and set &#8220;Featured ad price&#8221; option</li>
</ul>
<p>Additionally you can modify each of pricing models with &#8220;Membership packages&#8221;. For more info and instructions on setting up, read the tutorial on <a href="http://docs.appthemes.com/classipress/setting-up-membership-packs/" title="Setting Up Membership Packs" target="_blank">Setting Up Membership Packs</a>.</p>
<p>At this point, ClassiPress is now set up to charge for listings.</p>
<h3>Payments Settings</h3>
<p>ClassiPress needs to know a few things about how you will charge for listings on your site. To set up these options, go to Payments &gt; Settings &gt; General tab. You should see something similar to the screenshot below.</p>
<p><em><strong>Important note:</strong> when you make any changes on this tab, you should press the “Save Changes” button before you navigate to another tab or page.</em></p>
<p><a href="https://docs.appthemes.com/files/2013/04/classipress-payments-settings.png"><img src="https://docs.appthemes.com/files/2013/04/classipress-payments-settings.png" alt="ClassiPress Payments Settings" width="609" height="645" class="aligncenter size-full wp-image-4830" /></a></p>
<h3>Regional</h3>
<p>ClassiPress allows you to choose the currency used to collect payments on your site. At present, you can only have one currency at a time in ClassiPress. This is the place to choose your currency. Click the drop down next to “Currency Selection” to select your preference.</p>
<p>Since PayPal is bundled with ClassiPress, the default currencies in ClassiPress are the currencies supported by that payment gateway. If you have added other payment gateways, you should see the currency options for the currencies supported by each gateway.</p>
<p>Below the currency selection you will find more options like:</p>
<ul>
<li>Identifier &#8211; allows you to choose between currency symbol and code</li>
<li>Position &#8211; determine where the identifier should be displayed</li>
<li>Thousands Separator &#8211; change to meet your regional price formatting</li>
<li>Decimal Sepatator &#8211; change to meet your regional price formatting</li>
<li>Tax Charge &#8211; allows you to add regional tax to the listing or membership purchase price</li>
</ul>
<h3>Installed Gateways</h3>
<p>This is where your installation of ClassiPress may differ from the screenshot above. ClassiPress will list, in this section, all of the installed payment gateways. If you have added more gateways, you will see them listed with “PayPal” and “Bank Transfer”.</p>
<p>To enable a payment gateway, simply check the “Enable” box to the right of that gateway. If you choose multiple payment gateways, ClassiPress will allow your customers a single choice from the gateways you have enabled. With more than one enabled, you give your customers the ability to determine the gateway that works best for them.</p>
<h3>Additional Payment Gateway Settings</h3>
<p>You will notice in the payments settings section of the WordPress admin that there is a tab for each installed gateway. You can click each tab to see the settings for that gateway. Each payment gateway will have it’s own settings and options.</p>
<p>Like this tutorial? <a href="http://www.appthemes.com/subscribe/">Subscribe</a> and get the latest tutorials delivered straight to your inbox or feed reader.</p><img src="http://feeds.feedburner.com/~r/AppthemesDocs/~4/6NcoZ3BGwiQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://docs.appthemes.com/classipress/setting-up-payments-in-classipress-3-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://docs.appthemes.com/classipress/setting-up-payments-in-classipress-3-3/</feedburner:origLink></item>
	</channel>
</rss>
