<?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>Privateer Web Solutions &#187; The Privateer Theme</title>
	<atom:link href="http://www.privateerwebsolutions.com/subjects/the-privateer-theme/feed" rel="self" type="application/rss+xml" />
	<link>http://www.privateerwebsolutions.com</link>
	<description>Online Traffic Websites for Internet Sellers</description>
	<lastBuildDate>Mon, 11 Apr 2011 15:25:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Editing Skins for the Privateer Theme</title>
		<link>http://www.privateerwebsolutions.com/articles/editing-skins-for-the-privateer-theme.html</link>
		<comments>http://www.privateerwebsolutions.com/articles/editing-skins-for-the-privateer-theme.html#comments</comments>
		<pubDate>Tue, 28 Sep 2010 23:27:47 +0000</pubDate>
		<dc:creator>Privateer Web Solutions</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[skins]]></category>

		<guid isPermaLink="false">http://www.privateerwebsolutions.com/?p=1714</guid>
		<description><![CDATA[If you like one or more of the currently available skins for the Privateer Theme, but do not like the colors used, want to use different graphics, or have the graphics on your server stored in an odd place, you can easily modify the skin to be more along the lines of what you are [...]]]></description>
			<content:encoded><![CDATA[<p>If you like one or more of the <a href="/wordpress-themes/privateer-theme/privateer-skins">currently available skins</a> for the Privateer Theme, but do not like the colors used, want to use different graphics, or have the graphics on your server stored in an odd place, you can easily modify the skin to be more along the lines of what you are wanting.</p>
<p>At their core, skins are nothing more than a set of database commands used to update privateer theme options with new settings to provide wanted looks.</p>
<p>Because they are text files, you can open them in text editors, change different things within them to be what you want or need, save the changes, and use the end result.</p>
<p><span id="more-1714"></span></p>
<div class="product">
<div class="head">Skin File Locations</div>
<div class="body">
<p>Skins that I make for the Privateer generally consist of two or more files:</p>
<ul>
<li><b>The Skin File</b>:<br />This is the file containing all necessary database option adjustments to apply a skin to the Privateer Theme.<br />These are located in /privateer/stylesets/ and have the skin name as part of the file name and an extension of .sql.</li>
<li><b>The Skin Readme</b>:<br />Readme files for the skins I create are located in /privateer/stylesets/read-mes/ and have the name of the skin with a .txt extension.<br />These contain any special information related to getting the skin set up properly, the presumed image path directory used, and colors used.</li>
</ul>
<p>When you want to edit a skin, you should locate both the skin file ( make a backup copy of it ) and the read me file ( read the readme file! ).</p>
</div>
</div>
<div class="product">
<div class="head">Altering File Paths</div>
<div class="body">
<p>Because different people install WordPress in different ways, and the option data within skin files often contains image urls, you may find yourself needing to adjust the image paths to suit your server setup.</p>
<p>Most skins for the Privateer Theme assume an image location starting with /wp-content/themes/privateer/stylesets/ . If you have your wordpress install located in /site rather than / ( root ), you can do the following to make a skin which uses graphics work on your site:</p>
<ul>
<li><u>Hire me</u>:<br />Contact me and arrange to have me fix the directories to work on your server for a small fee. (expensive)</li>
<li><u>Edit theme options</u>:<br />Track down the file urls in the various options within the Privateer theme and hand edit them. (slow)</li>
<li><u>Edit the Skin File</u>:<br />Open the skin in a text file, search for the beginning of the current image locations, and replace matches with what is needed for your own site. ( cheap and fast )</li>
</ul>
<p>So, here is how you would edit the Blue Music skin if your server is set up to have /site/wp-content as the wordpress content directory:</p>
<ol>
<li>Open the banner-blue-music-readme.txt file ( the skins readme )</li>
<li>Note the Base Image Path Assumed<br />/wp-content/themes/privateer/images/qs/bluemusic</li>
<li>Open the skin file ( Banner_Blue_Music_styles_only_set.sql ) in a text editor</li>
<li>Do a search and replace on the entire file, searching for /wp-content/themes/privateer/images/qs/bluemusic and replacing it with /site/wp-content/themes/privateer/images/qs/bluemusic</li>
<li>Save the file</li>
<li>Upload the resulting skin file to your server (overwriting the existing skin file)</li>
<li>Apply the skin via the Privateer &#8211; Quick Display &#8211; Change Style menu.</li>
</ol>
<p>As you can see, it is fairly simple to change the file paths associated for a skin.</p>
</div>
</div>
<div class="product">
<div class="head">Changing Skin Colors</div>
<div class="body">
<p>When you like the layout of a skin, but don&#8217;t like the colors, there are a few options currently available:</p>
<ul>
<li><u>Apply the skin and manually change colors</u><br />Effective, but time consuming in some cases</li>
<li><u>Hire me to change the colors</u><br />Effective, but a bit expensive</li>
<li><u>Edit the Skin File</u><br />Typically quick and easy.</li>
</ul>
<p>Let us assume that you want to change some of the colors in the above referenced Blue Music styleset.</p>
<p>When you open the readme for it, you will see a list of colors used (usually&#8230;sometimes I forget)</p>
<p>Find the color that you want to replace and choose a color to replace it with.</p>
<p>Then&#8230;</p>
<ol>
<li>Open the skin file in a text editor</li>
<li>Do a search and replace, searching for the color in question and replacing it with the color wanted.<br />For example, we want to change #97E7FE to #FFFFCC&#8230;so a search for 97E7FE replacing it with FFFFCC will change all instances of the first color to the second color.</li>
<li>Save the file</li>
<li>Overwrite the original file on the server</li>
<li>Apply the styleset</li>
</ol>
<p>A few quick search and replace commands can alter all of the colors within a skin.</p>
</div>
</div>
<div class="product">
<div class="head">Changing the Images used in a Skin</div>
<div class="body">
<p>For certain skins, you may want to replace the images that are used with your own images.</p>
<p>When doing so, if you want the look to be right you should make sure that your images are the same size as the skins images.</p>
<p>Within skin readme files, images used are typically listed along with the presumed image path, so you can locate them and replace them with the images that you want to use instead.</p>
</div>
</div>
<p>With the above, you should be able to use the existing skins to create versions with completely different color sets.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.privateerwebsolutions.com/articles/editing-skins-for-the-privateer-theme.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy sales pages for WordPress with the Privateer Theme</title>
		<link>http://www.privateerwebsolutions.com/articles/easy-sales-pages-for-wordpress-with-the-privateer-theme.html</link>
		<comments>http://www.privateerwebsolutions.com/articles/easy-sales-pages-for-wordpress-with-the-privateer-theme.html#comments</comments>
		<pubDate>Thu, 29 Apr 2010 05:38:54 +0000</pubDate>
		<dc:creator>Privateer Web Solutions</dc:creator>
				<category><![CDATA[The Privateer Theme]]></category>

		<guid isPermaLink="false">http://www.privateerwebsolutions.com/?p=1481</guid>
		<description><![CDATA[If you are looking to create nice looking sales pages fast using wordpress, the Privateer Theme might be something to consider. With it, you can create as many sales pages as you want using only one wordpress install. Each page can look completely different both from the wordpress site itself, but from each other. See [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking to create nice looking sales pages fast using wordpress, the Privateer Theme might be something to consider.</p>
<p>With it, you can create as many sales pages as you want using only one wordpress install. Each page can look completely different both from the wordpress site itself, but from each other.</p>
<p>See combination example and tutorial: <a href="http://www.theprivateertheme.com/articles/wordpress-sales-pages-building-sales-pages-with-the-privateer-theme.html">WordPress Sales Pages with the Privateer Theme</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.privateerwebsolutions.com/articles/easy-sales-pages-for-wordpress-with-the-privateer-theme.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Version 1.4 of the Privateer Theme for WordPress is out</title>
		<link>http://www.privateerwebsolutions.com/articles/version-1-4-of-the-privateer-theme-for-wordpress-is-out.html</link>
		<comments>http://www.privateerwebsolutions.com/articles/version-1-4-of-the-privateer-theme-for-wordpress-is-out.html#comments</comments>
		<pubDate>Mon, 22 Mar 2010 23:08:50 +0000</pubDate>
		<dc:creator>Privateer Web Solutions</dc:creator>
				<category><![CDATA[The Privateer Theme]]></category>

		<guid isPermaLink="false">http://www.privateerwebsolutions.com/?p=1476</guid>
		<description><![CDATA[I&#8217;ve finally wrapped up the next version of the Privateer Theme ( the one I use for this site ). New features include: The ability to make completely custom headers and/or combine custom content bars with the existing bars XML Sitemap Generation Support for Google AdSense for Search Extra content areas above and below the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally wrapped up the next version of the Privateer Theme ( the one I use for this site ).</p>
<p>New features include:</p>
<ul>
<li>The ability to make completely custom headers and/or combine custom content bars with the existing bars</li>
<li>XML Sitemap Generation</li>
<li>Support for Google AdSense for Search</li>
<li>Extra content areas above and below the sidebars.</li>
</ul>
<p>For full details, please check out the <a href="http://www.privateerwebsolutions.com/privateer-theme">Privateer Theme Page</a> and <a href="http://forums.privateerwebsolutions.com/">Privateer Theme Forums</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.privateerwebsolutions.com/articles/version-1-4-of-the-privateer-theme-for-wordpress-is-out.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Boxlist and Postlist Custom Display Set</title>
		<link>http://www.privateerwebsolutions.com/articles/the-boxlist-and-postlist-custom-display-set.html</link>
		<comments>http://www.privateerwebsolutions.com/articles/the-boxlist-and-postlist-custom-display-set.html#comments</comments>
		<pubDate>Thu, 15 Oct 2009 00:22:45 +0000</pubDate>
		<dc:creator>Privateer Web Solutions</dc:creator>
				<category><![CDATA[Custom Displays]]></category>
		<category><![CDATA[The Privateer Theme]]></category>
		<category><![CDATA[Custom Display]]></category>

		<guid isPermaLink="false">http://www.privateerwebsolutions.com/?p=1417</guid>
		<description><![CDATA[The Boxlist and Postlist Custom Display Set is the initial set of custom displays for The Privateer WordPress Theme. It includes 12 different custom displays, outlined as follows: Page: Extra Column Boxlist This display adds an extra list of content boxes to either side of the content area for page pages. Page: Extra Column Postlist [...]]]></description>
			<content:encoded><![CDATA[<p>The Boxlist and Postlist Custom Display Set is the initial set of custom displays for The Privateer WordPress Theme.</p>
<p>It includes 12 different custom displays, outlined as follows:</p>
<p><span id="more-1417"></span><br />
<center><object width="340" height="285"><param name="movie" value="http://www.youtube.com/v/z-kSJKrMJEg&#038;hl=en&#038;fs=1&#038;rel=0&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/z-kSJKrMJEg&#038;hl=en&#038;fs=1&#038;rel=0&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="340" height="285"></embed></object></center></p>
<ol>
<li><u>Page: Extra Column Boxlist</u>
<ul>
<li>This display adds an extra list of content boxes to either side of the content area for page pages.</li>
</ul>
</li>
<li><u>Page: Extra Column Postlist</u>
<ul>
<li>This display adds an extra list of posts to either side of the content area for page pages.</li>
<li>The posts to be displayed are set by choosing a category to pull them from for each page that uses this display.</li>
</ul>
</li>
<li><u>Page: Extra Two Column With Boxlist</u>
<ul>
<li>This display places content normally, but adds two columns below the content, one side containing content areas and the other containing a list of posts.</li>
<li>It can also be used to place only content areas or a post list below it if wanted.</li>
</ul>
</li>
<li><u>Post: Extra Column Boxlist</u>
<ul>
<li>This display adds an extra column of content boxes to either side of the normal post content.</li>
</ul>
</li>
<li><u>Post: Extra Column Postlist</u>
<ul>
<li>This display adds an extra column of posts pulled from a specified category to the side of the normal content.</li>
</ul>
</li>
<li><u>Home: Two Column Boxlist Postlist</u>
<ul>
<li>This display adds an extra column of content boxes next to the normally displayed posts on your home page.</li>
<li>Check out <a href="http://www.privateerwebsolutions.com/">my home page</a> for an example of this display in use.</li>
</ul>
</li>
<li><u>Archive Pages: Two Column Boxlist Postlist</u>
<ul>
<li>Each of the archive pages ( tag archives, date archives, author archives, and category archives ) includes a custom display that will add a box list to the side of the normally displayed posts, just as the home page display for this set does.</li>
</ul>
</li>
<li><u>404 Pages: 2 Column With List</u>
<ul>
<li>The 404 page for this set can be configured to display one or two content columns of content areas as well as a list of posts at the top on either side.</li>
<li>This is a good way to showcase various features of your site and give people the latest information from you if they happen to hit a page that simply does not exist.</li>
</ul>
</li>
</ol>
<p style="color: #880000;"><center>$27.00<br /><a href="https://www.e-junkie.com/ecom/gb.php?c=cart&#038;i=pvt-cd-postbox&#038;cl=32534&#038;ejc=2" target="ej_ejc" class="ec_ejc_thkbx" onClick="javascript:return EJEJC_lc(this);"><img src="http://www.e-junkie.com/ej/ej_add_to_cart.gif" border="0" alt="Add to Cart"/></a></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.privateerwebsolutions.com/articles/the-boxlist-and-postlist-custom-display-set.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Privateer Theme 1.2 is just around the corner!</title>
		<link>http://www.privateerwebsolutions.com/articles/the-privateer-theme-1-2-is-just-around-the-corner.html</link>
		<comments>http://www.privateerwebsolutions.com/articles/the-privateer-theme-1-2-is-just-around-the-corner.html#comments</comments>
		<pubDate>Wed, 30 Sep 2009 18:25:46 +0000</pubDate>
		<dc:creator>Privateer Web Solutions</dc:creator>
				<category><![CDATA[The Privateer Theme]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[The Privateer]]></category>
		<category><![CDATA[WordPress Theme]]></category>

		<guid isPermaLink="false">http://www.privateerwebsolutions.com/?p=1338</guid>
		<description><![CDATA[I&#8217;ve been working on adding features to make managing sites using The Privateer Theme for WordPress a bit easier. With a bit of luck and a lot of programming, I should have it available within three to four days. A partial change list: More (and more flexible) custom displays A custom display installer, so you [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on adding features to make managing sites using The Privateer Theme for WordPress a bit easier. With a bit of luck and a lot of programming, I should have it available within three to four days.</p>
<p><b>A partial change list:</b></p>
<ol>
<li>More (and more flexible) custom displays</li>
<li>A custom display installer, so you don&#8217;t have to upload them via ftp.</li>
<li>Quick sets. These are saved option groups that you can create and/or apply to instantly change the entire look of your site. Perfect for trying out different looks quickly as well as designing locally and applying your finished look to your production site.</li>
<li>Better interoperability with Google AdSense and Analytics</li>
<li>A more robust lockout system so you can choose to refer those who are not logged in to your login page, show them a static page, or show them a brief maintenance type blurb.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.privateerwebsolutions.com/articles/the-privateer-theme-1-2-is-just-around-the-corner.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Privateer v1.0, a new WordPress Theme from PWS.</title>
		<link>http://www.privateerwebsolutions.com/articles/the-privateer-v1-0-a-new-wordpress-theme-from-pws.html</link>
		<comments>http://www.privateerwebsolutions.com/articles/the-privateer-v1-0-a-new-wordpress-theme-from-pws.html#comments</comments>
		<pubDate>Wed, 23 Sep 2009 08:35:40 +0000</pubDate>
		<dc:creator>Privateer Web Solutions</dc:creator>
				<category><![CDATA[The Privateer Theme]]></category>
		<category><![CDATA[Privateer Theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.privateerwebsolutions.com/?p=1280</guid>
		<description><![CDATA[Finally, after a good month and a half of solid coding, I feel that The Privateer Theme is ready for the public. Feel free to grab a copy of The Privateer Theme and check it out, or find out more about it at the Privateer Theme Page. Note: 1.0 is outdated and has a few [...]]]></description>
			<content:encoded><![CDATA[<p>Finally, after a good month and a half of solid coding, I feel that The Privateer Theme is ready for the public.</p>
<p>Feel free to grab a copy of <a href="http://www.filedropper.com/privateer">The Privateer Theme</a> and check it out, or find out more about it at <a href="/privateer-theme">the Privateer Theme Page</a>.</p>
<p><b style="color: #880000;">Note:</b> 1.0 is outdated and has a few bugs within it, but is still available to any interested in using it. It also lacks the new features available in 1.2.<span id="more-1280"></span></p>
<h3>So what does The Privateer Bring to the table?</h3>
<ol>
<li><u>Complete separation of WordPress Post/Page objects and the WordPress HTML Templates</u>
<ul>
<li>Each major template page ( single.php, page.php, home.php, etc. ) has its own optional kicker, title, byline, and content areas, which you can populate as you see fit.</li>
<li>Both major wordpress objects ( pages and posts ) can have their individual pieces turned on and/or off.</li>
</ul>
</li>
<li><u>A robust admin panel</u>
<ul>
<li>Setup and style the template page level items.</li>
<li>Setup search engine optimization for the template.</li>
<li>Setup and style post and page objects shown via the template.</li>
<li>Override the default display with drop in custom displays.</li>
</ul>
</li>
<li><u>Site wide view blocking</u>
<ul>
<li>Turn your site off at will, blocking potential visitors based upon their permissions and displaying a custom message or page to anyone without the necessary permissions.</li>
<li>Good for heavy maintenance or just running a private members only site.</li>
</ul>
</li>
<li><u>Drop in Custom Displays</u>
<ul>
<li>Custom displays are much like templates, but they are simple drop in codes that override the content section of a particular template type.</li>
<li>Each has its own built in admin menu and page/post custom displays can be chosen on a page by page or post by post basis&#8230;and have individual options available within the wordpress page/post editor.</li>
<li>Activate multiple custom displays on non page/post templates to have pages of particular types served via a randomly installed custom display or activate only one and have it used to show that template consistently.</li>
</ul>
</li>
<li><u>Configurable navigation bars of various types</u>
<ul>
<li>Multi page navigation bars ( numeric or text )</li>
<li>Next / Previous post navigation bars</li>
<li>Ancestor navigation bars</li>
<li>Child page navigation bars</li>
</ul>
</li>
</ol>
<h3>See the general look of The Privateer</h3>
<ul>
<li>This site is running the privateer theme.</li>
<li>The <a href="http://www.privateerwebsolutions.com/">home page</a> is using the <a href="http://www.privateerwebsolutions.com/articles/the-store-home-two-column-display.html">Store Home 2 Column Custom display</a>.</li>
<li>The Store Home 2 Column Custom display is using the Product Showcase Single Post Custom Display</li>
<li>The 404 page is using a custom 404 Not Found display. You can see an example <a href="http://www.privateerwebsolutions.com/articles/jummi.html">here</a>.</li>
<li><a href="/privateer-theme">The Privateer Theme</a> page is using the Category Showcase Custom Display.</li>
</ul>
<p>All of these will be available shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.privateerwebsolutions.com/articles/the-privateer-v1-0-a-new-wordpress-theme-from-pws.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

