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

<channel>
	<title>Knowledge Base</title>
	<atom:link href="http://kb.wpjobboard.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://kb.wpjobboard.net</link>
	<description></description>
	<lastBuildDate>Wed, 04 Jan 2012 19:27:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Payment API</title>
		<link>http://kb.wpjobboard.net/payment-api/</link>
		<comments>http://kb.wpjobboard.net/payment-api/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 19:19:53 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Developer Docs]]></category>

		<guid isPermaLink="false">http://kb.wpjobboard.net/?p=210</guid>
		<description><![CDATA[Available since WPJobBoard 3.5 In order to add new payment method to WPJB, you need to do few things. Create new WordPress plugin, create class that will extend WPJB_Payment_Interface and apply filter that will register new payment method. The functionality &#8230; <a href="http://kb.wpjobboard.net/payment-api/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Available since WPJobBoard 3.5</p>
<p>In order to add new payment method to WPJB, you need to do few things. Create new WordPress plugin, create class that will extend WPJB_Payment_Interface and apply filter that will register new payment method.</p>
<p>The functionality is in beta phase, so it might slightly change in the future.</p>
<p>Below you can download working example that will add Payment by cash to WPJobBoard, the only thing you need to do is upload it to wp-content/plugins directory and activate &#8220;WPJobBoard Mod&#8221; plugin in wp-admin/plugins.php section.</p>
<p>If everything will be ok, in Add Job form &#8220;Payment Method&#8221; field should appear with options &#8220;PayPal&#8221; and &#8220;Pay by cash&#8221;.</p>
<p><a href="http://kb.wpjobboard.net/wp-content/uploads/2012/01/wpjb-mod.zip">Download Payment API Example</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kb.wpjobboard.net/payment-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wpjb_find_jobs</title>
		<link>http://kb.wpjobboard.net/wpjb_find_jobs/</link>
		<comments>http://kb.wpjobboard.net/wpjb_find_jobs/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 19:16:56 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kb.wpjobboard.net/?p=203</guid>
		<description><![CDATA[Function is available since WPJobBoard 3.5 This function is can be used for advanced jobs search, it allows to search: keyword, location, country, category, job type, additional fields, sort jobs and much more. Note that only active jobs are returned. &#8230; <a href="http://kb.wpjobboard.net/wpjb_find_jobs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Function is available since WPJobBoard 3.5</p>
<p>This function is can be used for advanced jobs search, it allows to search: keyword, location, country, category, job type, additional fields, sort jobs and much more. Note that only active jobs are returned.</p>
<h3>Default usage</h3>
<p><code> $result = wpjb_find_jobs(array(<br />
&nbsp; &nbsp; "query" =&gt; "",<br />
&nbsp; &nbsp; "location" =&gt; "",<br />
&nbsp; &nbsp; "country" =&gt; null,<br />
&nbsp; &nbsp; "category" =&gt; null,<br />
&nbsp; &nbsp; "type" =&gt; null,<br />
&nbsp; &nbsp; "posted" =&gt; null,<br />
&nbsp; &nbsp; "is_featured" =&gt; false,<br />
&nbsp; &nbsp; "employer_id" =&gt; null,<br />
&nbsp; &nbsp; "sort" =&gt; "job_created_at",<br />
&nbsp; &nbsp; "order" =&gt; "DESC",<br />
&nbsp; &nbsp; "page" =&gt; null,<br />
&nbsp; &nbsp; "count" =&gt; null,<br />
&nbsp; &nbsp; "field" =&gt; array()<br />
));<br />
</code></p>
<h3>Parameters</h3>
<p>You can pass zero or more parameters to the function. </p>
<p><strong>query</strong> &#8211; (string) search jobs by: keyword, company name, location</p>
<p><strong>location</strong> &#8211; (string) search jobs by: city, state, country zip code</p>
<p><strong>country</strong> &#8211; (int) search countries by country numeric code (available codes can be found in wpjobboard/application/config/country_list.ini</p>
<p><strong>category</strong> &#8211; (mixed) can be both category id (int) or array of category ids</p>
<p><strong>type</strong> &#8211; (mixed) can be both job type id (int) or array of job type ids</p>
<p><strong>posted</strong> &#8211; (int) how many days ago job was posted (available values are: 1=Today; 2=Yesterday, 7=Less than 7 days ago, 30=Less than 30 days ago)</p>
<p><strong>is_featured</strong> &#8211; (boolean) if true search will return featured jobs only</p>
<p><strong>employer_id</strong> &#8211; (int) employer id from database table wpjb_employer</p>
<p><strong>sort</strong> &#8211; (string) field to sort by (available are: &#8220;id&#8221;, &#8220;job_created_at&#8221;, &#8220;job_title&#8221;)</p>
<p><strong>order</strong> &#8211; (string) either ASC (ascending) or DESC (descending)</p>
<p><strong>page</strong> &#8211; (int) which page to display (for use with count parameter)</p>
<p><strong>count</strong> &#8211; (int) number of jobs per page</p>
<p><strong>field</strong> &#8211; (array) search by additional field, the parameter should contain array of key, value elements where key is additional field id and value is the value to search by, for example <code>array(5 =&gt; "find-me")</code></p>
<h3>Returned value</h3>
<p><code><br />
$result-&gt;job; // (array) of Wpjb_Model_Job objects<br />
$result-&gt;page // (int) page number;<br />
$result-&gt;perPage // (int) number of element per page;<br />
$result-&gt;count // (int) number of jobs on this page;<br />
$result-&gt;total // (int) total number of jobs found;<br />
$result-&gt;url-&gt;feed // (string) url to custom rss for this search<br />
$result-&gt;url-&gt;search // (string) url to search result<br />
</code></p>
<h3>Examples</h3>
<p>Searching jobs by keyword and displaying job link and title:<br />
<code><br />
$result = wpjb_find_jobs(array("query"=>"php"));<br />
foreach($result-&gt;job as $job) {<br />
&nbsp; &nbsp; echo "&lt;p&gt;";<br />
&nbsp; &nbsp; echo $job-&gt;job_title."&lt;br/&gt;";<br />
&nbsp; &nbsp; echo wpjb_link_to("job", $job);<br />
&nbsp; &nbsp; echo "&lt;/p&gt;";<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://kb.wpjobboard.net/wpjb_find_jobs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Grant Employers Access To Resumes</title>
		<link>http://kb.wpjobboard.net/how-to-grant-employers-access-to-resumes/</link>
		<comments>http://kb.wpjobboard.net/how-to-grant-employers-access-to-resumes/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 16:25:58 +0000</pubDate>
		<dc:creator>Ishan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kb.wpjobboard.net/?p=198</guid>
		<description><![CDATA[To get access to resumes, first, user has to register as employer and then go to Resumes Access page and then click &#8220;Request Full Access&#8221;. Administrator has to follow following steps: Go to http://yoursite.com/wp-admin/admin.php?page=wpjb/employers&#38;action=index/show/pending/ Check the list of employers to be approved. &#8230; <a href="http://kb.wpjobboard.net/how-to-grant-employers-access-to-resumes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To get access to resumes, first, user has to <a title="How To Register As An Employer" href="http://kb.wpjobboard.net/how-to-register-as-an-employer/">register as employer</a> and then go to Resumes Access page and then click &#8220;Request Full Access&#8221;.</p>
<p>Administrator has to follow following steps:</p>
<ol>
<li>Go to <code>http://yoursite.com/wp-admin/admin.php?page=wpjb/employers&amp;action=index/show/pending/</code></li>
<li>Check the list of employers to be approved.</li>
<li>Under &#8220;Bulk Actions&#8221;, select &#8220;Activate&#8221;.</li>
<li>Click &#8220;Apply&#8221;.</li>
</ol>
<p>When you edit employer, &#8220;Company Profile Status&#8221; should read &#8220;Full Access Granted&#8221; for approved admins.</p>
]]></content:encoded>
			<wfw:commentRss>http://kb.wpjobboard.net/how-to-grant-employers-access-to-resumes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Register As An Employer</title>
		<link>http://kb.wpjobboard.net/how-to-register-as-an-employer/</link>
		<comments>http://kb.wpjobboard.net/how-to-register-as-an-employer/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 15:46:43 +0000</pubDate>
		<dc:creator>Ishan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kb.wpjobboard.net/?p=195</guid>
		<description><![CDATA[To register as an employer, you have to go to following address: http://yourwebsite.com/jobs/employer/new/ You&#8217;ll be presented with following form. Fill it and click &#8220;Register&#8221; to complete. To register as an job candidate, go to: http://yourwebsite.com/resumes/my-resume/ Job candidates can also register &#8230; <a href="http://kb.wpjobboard.net/how-to-register-as-an-employer/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To register as an employer, you have to go to following address:</p>
<p><code>http://yourwebsite.com/jobs/employer/new/</code></p>
<p>You&#8217;ll be presented with following form. Fill it and click &#8220;Register&#8221; to complete.</p>
<p><img class="aligncenter size-full wp-image-196" src="http://kb.wpjobboard.net/wp-content/uploads/2011/12/Register.png" alt="" width="503" height="577" />To register as an job candidate, go to:</p>
<p><code>http://yourwebsite.com/resumes/my-resume/</code></p>
<p><code></code>Job candidates can also register using the normal WordPress Registration Form.</p>
<p><strong>Note</strong>: Please enable &#8220;Anyone can register&#8221; option in WordPress Administrator Panel under Settings -&gt; General to allow registrations.</p>
<p>You can add links to registration page in sidebar by adding &#8220;Job Board Menu&#8221; and &#8220;Resumes Menu&#8221; widgets.</p>
]]></content:encoded>
			<wfw:commentRss>http://kb.wpjobboard.net/how-to-register-as-an-employer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reordering WP JobBoard Form Items</title>
		<link>http://kb.wpjobboard.net/reorder-fields/</link>
		<comments>http://kb.wpjobboard.net/reorder-fields/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 06:09:38 +0000</pubDate>
		<dc:creator>Ishan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kb.wpjobboard.net/?p=189</guid>
		<description><![CDATA[WP JobBoard plugin provides an easy to use Visual Editor for reordering Custom Fields. Follow following instructions to reorder the form fields: Go to Settings -&#62; Visual Editor. Click the corresponding button for the form you want to edit. You &#8230; <a href="http://kb.wpjobboard.net/reorder-fields/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>WP JobBoard plugin provides an easy to use <strong>Visual Editor</strong> for reordering Custom Fields. Follow following instructions to reorder the form fields:</p>
<ol>
<li>Go to Settings -&gt; Visual Editor.</li>
<li>Click the corresponding button for the form you want to edit.<img class="aligncenter size-full wp-image-190" src="http://kb.wpjobboard.net/wp-content/uploads/2011/12/Visual-Editor-1.png" alt="" width="741" height="382" /></li>
<li>You will be presented with Visual Editor which allows you to drag and drop fields.</li>
<li>To hide or make a field required, hover over corresponding form field. &#8220;Configure&#8221; link will appear on the top right of field. Click it.</li>
<li>You can change Label, Hint and other options here. Once done, click OK.<img class="aligncenter size-full wp-image-191" src="http://kb.wpjobboard.net/wp-content/uploads/2011/12/Visual-Editor-Edit.png" alt="" width="601" height="376" /></li>
<li>If needed, you can also reset form layout by going to bottom of page and clicking &#8220;Reset Form Layout&#8221;</li>
</ol>
<p>Your fields have been reordered.</p>
]]></content:encoded>
			<wfw:commentRss>http://kb.wpjobboard.net/reorder-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Custom Fields To Job Board And Resumes</title>
		<link>http://kb.wpjobboard.net/adding-custom-fields/</link>
		<comments>http://kb.wpjobboard.net/adding-custom-fields/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 05:58:18 +0000</pubDate>
		<dc:creator>Ishan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kb.wpjobboard.net/?p=183</guid>
		<description><![CDATA[Here&#8217;s how to Add Custom Fields to Job Boards and Resumes: Go to Settings-&#62; Additional Fields. Click &#8220;Add Additional Fields&#8221;. On next page, select the appropriate options for the new field. The new field(s) can be added for &#8220;Add Job Form&#8221;, &#8220;Apply &#8230; <a href="http://kb.wpjobboard.net/adding-custom-fields/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how to Add Custom Fields to Job Boards and Resumes:</p>
<ol>
<li>Go to Settings-&gt; Additional Fields.</li>
<li>Click &#8220;Add Additional Fields&#8221;.<img class="aligncenter size-full wp-image-184" src="http://kb.wpjobboard.net/wp-content/uploads/2011/12/5_Add_Field.png" alt="" width="431" height="485" /></li>
<li>On next page, select the appropriate options for the new field. The new field(s) can be added for &#8220;Add Job Form&#8221;, &#8220;Apply To A Job Form&#8221; and &#8220;My Resume&#8221; pages.</li>
<li>Click Save.<img class="aligncenter size-full wp-image-185" src="http://kb.wpjobboard.net/wp-content/uploads/2011/12/Add_Field_5_2.png" alt="" width="514" height="540" /></li>
</ol>
<p>Your custom fields have been added.</p>
<p>To reorder fields, <a href="http://kb.wpjobboard.net/reorder-fields">follow these instructions</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://kb.wpjobboard.net/adding-custom-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Restore Deleted Jobs/Resumes Page</title>
		<link>http://kb.wpjobboard.net/how-to-restore-deleted-jobs-resumes-pages/</link>
		<comments>http://kb.wpjobboard.net/how-to-restore-deleted-jobs-resumes-pages/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 04:37:02 +0000</pubDate>
		<dc:creator>Ishan</dc:creator>
				<category><![CDATA[User Guide]]></category>

		<guid isPermaLink="false">http://kb.wpjobboard.net/?p=175</guid>
		<description><![CDATA[The plugin comes with two default pages &#8220;Jobs&#8221; and &#8220;Resumes&#8221;. Job Board and Resumes are embedded into these pages. Learn more about these pages here. If you delete one of these pages, you can restore them by deactivating and reactivating the plugin. &#8230; <a href="http://kb.wpjobboard.net/how-to-restore-deleted-jobs-resumes-pages/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The plugin comes with two default pages &#8220;Jobs&#8221; and &#8220;Resumes&#8221;. Job Board and Resumes are embedded into these pages.</p>
<p>Learn more about these pages <a href="http://kb.wpjobboard.net/introduction-to-templates/">here</a>.</p>
<p>If you delete one of these pages, you can restore them by deactivating and reactivating the plugin.</p>
<p>Here are the steps:</p>
<ol>
<li>Go to WordPress Dashboard.</li>
<li>Click Plugins -&gt; Installed Plugin.</li>
<li>Deactivate WP Job Board plugin.</li>
<li>Activate it again.</li>
</ol>
<p>The missing pages will be restored now.</p>
]]></content:encoded>
			<wfw:commentRss>http://kb.wpjobboard.net/how-to-restore-deleted-jobs-resumes-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turning Off Moderation For New Jobs</title>
		<link>http://kb.wpjobboard.net/turning-off-moderation-for-new-jobs/</link>
		<comments>http://kb.wpjobboard.net/turning-off-moderation-for-new-jobs/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 04:21:36 +0000</pubDate>
		<dc:creator>Ishan</dc:creator>
				<category><![CDATA[User Guide]]></category>

		<guid isPermaLink="false">http://kb.wpjobboard.net/?p=168</guid>
		<description><![CDATA[Note: Only free jobs require moderation. Paid jobs are activated instantly. Follow following steps to turn off moderation for new jobs: Go to Settings -&#62; Configuration. Click &#8220;Edit Job Posting Options&#8221; Uncheck &#8220;Yes&#8221; in front of Moderate Jobs. Click Save &#8230; <a href="http://kb.wpjobboard.net/turning-off-moderation-for-new-jobs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Note</strong>: Only free jobs require moderation. Paid jobs are activated instantly.</p>
<p>Follow following steps to turn off moderation for new jobs:</p>
<ol>
<li>Go to Settings -&gt; Configuration.</li>
<li>Click &#8220;Edit Job Posting Options&#8221;<br />
<img class="aligncenter size-full wp-image-169" src="http://kb.wpjobboard.net/wp-content/uploads/2011/11/Approving-Jobs-1.png" alt="" width="685" height="547" /></li>
<li>Uncheck &#8220;Yes&#8221; in front of Moderate Jobs.</li>
<li>Click Save Changes.<br />
<img class="aligncenter size-full wp-image-170" src="http://kb.wpjobboard.net/wp-content/uploads/2011/11/Approving-Jobs-2.png" alt="" width="864" height="558" /></li>
</ol>
<p><strong>Note</strong>: You need a PayPal Premier or Business account to approve jobs instantly.</p>
]]></content:encoded>
			<wfw:commentRss>http://kb.wpjobboard.net/turning-off-moderation-for-new-jobs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Approving New Jobs</title>
		<link>http://kb.wpjobboard.net/approving-new-jobs/</link>
		<comments>http://kb.wpjobboard.net/approving-new-jobs/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 04:08:30 +0000</pubDate>
		<dc:creator>Ishan</dc:creator>
				<category><![CDATA[User Guide]]></category>

		<guid isPermaLink="false">http://kb.wpjobboard.net/?p=164</guid>
		<description><![CDATA[Approving New Jobs Follow following steps to approve new jobs: From WordPress Dashboard, go to &#8220;Job Board&#8221;. Select &#8221;Awaiting Approval from the menu. Check the jobs you want to approve. Select &#8220;Activate&#8221; from bulk actions and click &#8220;Apply&#8221; Please Note: Only &#8230; <a href="http://kb.wpjobboard.net/approving-new-jobs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3>Approving New Jobs</h3>
<p>Follow following steps to approve new jobs:</p>
<ol>
<li>From WordPress Dashboard, go to &#8220;Job Board&#8221;.</li>
<li>Select &#8221;Awaiting Approval from the menu.</li>
<li>Check the jobs you want to approve.</li>
<li>Select &#8220;Activate&#8221; from bulk actions and click &#8220;Apply&#8221;</li>
</ol>
<p><img class="aligncenter size-full wp-image-165" src="http://kb.wpjobboard.net/wp-content/uploads/2011/11/Approving-Jobs.png" alt="" width="680" height="504" /></p>
<p><strong>Please Note</strong>:</p>
<ul>
<li>Only free jobs require approval. Paid jobs are activated instantly.</li>
<li>You need a PayPal Premier or Business account to have premium jobs approval.</li>
</ul>
<h3>Active And Inactive Jobs</h3>
<p><span style="color: #000000"><strong>Active</strong></span><strong> Job</strong>: A job is active when it is approved and its expiration date is greater than current date.</p>
<p><strong>Inactive Job</strong>: A job is inactive when it is either not approved, marked as deactivated by administrator or its expiration date has passed.</p>
]]></content:encoded>
			<wfw:commentRss>http://kb.wpjobboard.net/approving-new-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Approving Resumes From Administrative Panel</title>
		<link>http://kb.wpjobboard.net/approving-resumes-administrative-panel/</link>
		<comments>http://kb.wpjobboard.net/approving-resumes-administrative-panel/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 03:53:54 +0000</pubDate>
		<dc:creator>Ishan</dc:creator>
				<category><![CDATA[User Guide]]></category>

		<guid isPermaLink="false">http://kb.wpjobboard.net/?p=156</guid>
		<description><![CDATA[Setting Up Resume Approval To enable approval for resumes, you have to follow following steps. First, go to Settings -&#62; Configuration. Once that is done, click &#8220;Edit &#8216;Resume&#8217; Options&#8221;. Here&#8217;s a screenshot: Approving Resumes Here are the steps to approve resumes: &#8230; <a href="http://kb.wpjobboard.net/approving-resumes-administrative-panel/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3>Setting Up Resume Approval</h3>
<p>To enable approval for resumes, you have to follow following steps.</p>
<p>First, go to Settings -&gt; Configuration.</p>
<p><img class="aligncenter size-full wp-image-157" src="http://kb.wpjobboard.net/wp-content/uploads/2011/11/Approve-1.png" alt="" width="145" height="220" /></p>
<p>Once that is done, click &#8220;Edit &#8216;Resume&#8217; Options&#8221;. Here&#8217;s a screenshot:</p>
<p><img class="aligncenter size-full wp-image-159" src="http://kb.wpjobboard.net/wp-content/uploads/2011/11/Approve-Resume-Options.png" alt="" width="546" height="351" /></p>
<h3>Approving Resumes</h3>
<p>Here are the steps to approve resumes:</p>
<ol>
<li>Click &#8220;Manage Resumes&#8221;.</li>
<li>Click &#8220;Pending Approval&#8221;.</li>
<li>Mark the resumes you want to accept.</li>
<li>Select &#8220;Approve&#8221; and click &#8220;Apply&#8221;</li>
</ol>
<p><img class="aligncenter size-full wp-image-161" src="http://kb.wpjobboard.net/wp-content/uploads/2011/11/Approving-Resumes.png" alt="" width="781" height="473" /></p>
<p><strong>Note</strong>: When a resume is updated, it is put in to approval process again.</p>
]]></content:encoded>
			<wfw:commentRss>http://kb.wpjobboard.net/approving-resumes-administrative-panel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

