<?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></title>
	<atom:link href="http://www.zomex.com/lab/feed" rel="self" type="application/rss+xml" />
	<link>http://www.zomex.com/lab</link>
	<description></description>
	<lastBuildDate>Fri, 20 Apr 2012 16:48:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to fix layout after enabling SEO friendly URLs in WHMCS</title>
		<link>http://www.zomex.com/lab/tutorials/whmcs1/fix-seo-friendly-urls-error.php</link>
		<comments>http://www.zomex.com/lab/tutorials/whmcs1/fix-seo-friendly-urls-error.php#comments</comments>
		<pubDate>Fri, 20 Apr 2012 11:35:18 +0000</pubDate>
		<dc:creator>Jack Curtis</dc:creator>
				<category><![CDATA[WHMCS]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[seo friendly urls]]></category>
		<category><![CDATA[template seo]]></category>
		<category><![CDATA[whmcs seo]]></category>
		<category><![CDATA[whmcs template seo]]></category>

		<guid isPermaLink="false">http://www.zomex.com/lab/?p=1020</guid>
		<description><![CDATA[In this tutorial I&#8217;ll show you how to fix the common broken WHMCS template issue when enabling SEO friendly URLs in WHMCS. This tutorial is specific to our WHMCS themes but will be similar for any templates. Why does the error occur? The error occours because when you enable SEO friendly URLs there is a [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I&#8217;ll show you how to fix the common broken <a href="/templates/web-hosting/whmcs/">WHMCS template</a> issue when enabling SEO friendly URLs in WHMCS. This tutorial is specific to our WHMCS themes but will be similar for any templates.</p>
<h2>Why does the error occur?</h2>
<p>The error occours because when you enable SEO friendly URLs there is a automatically folder structure applied to all knowledgebase articles &#038; announcements. e.g /announcement.php/keyword/keyword-keywords.html. What this does is make the lines of code that calls the Javascript and CSS invalid which is why when you load your website the content is still there but the style is missing.</p>
<h2>Why don&#8217;t you include a fix by default?</h2>
<p>The reason for this is because the correct file location to use will depend on whether you have WHMCS installed in root or in a directory. Also 90% of users do not enable this feature so we decided it&#8217;s best to create this article to cater for those that do.</p>
<h2>How to fix it</h2>
<p>Follow the guide based on your install location:</p>
<h3>WHMCS installed in root</h3>
<p>Open the following file:</p>
<p>/templates/YOUR_TEMPLATE/header.tpl</p>
<p>find the following code:</p>
<p><pre><pre style="background: yellow; padding: 5px;">
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;templates/{$template}/css/whmcs.css&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;templates/{$template}/css/bootstrap.css&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;templates/{$template}/css/template.css&quot; /&gt;
</pre></pre></p>
<p>and add a / to the beginning of each file location as so:</p>
<p><pre><pre style="background: yellow; padding: 5px;">
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/templates/{$template}/css/whmcs.css&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/templates/{$template}/css/bootstrap.css&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/templates/{$template}/css/template.css&quot; /&gt;
</pre></pre></p>
<p>The / represents the public_html folder so no matter which URL structure is used the file location will always be correct.</p>
<h3>WHMCS installed in sub-directory</h3>
<p>I&#8217;ll this guide we&#8217;ll assume that WHMCS is installed in /public_html/clients/ (could represent clients.domain.com or domain.com/clients/)</p>
<p>Open the following file:</p>
<p>/templates/YOUR_TEMPLATE/header.tpl</p>
<p>find the following code:</p>
<p><pre><pre style="background: yellow; padding: 5px;">
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;templates/{$template}/css/whmcs.css&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;templates/{$template}/css/bootstrap.css&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;templates/{$template}/css/template.css&quot; /&gt;
</pre></pre></p>
<p>and add a / to the beginning of each file location as so:</p>
<p><pre><pre style="background: yellow; padding: 5px;">
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/clients/templates/{$template}/css/whmcs.css&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/clients/templates/{$template}/css/bootstrap.css&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/clients/templates/{$template}/css/template.css&quot; /&gt;
</pre></pre></p>
<p>The / represents the public_html &#038; together with clients represents the /public_html/clients/ folder so no matter which URL structure is used the file location will always be correct.</p>
<p class="aligncenter margintopbottom30"><a href="/services/whmcs.php"><img src="/libs/images/layout/whmcs-services.jpg" width="728" height="90" alt="professional whmcs services" /></a></p>
<img src="http://www.zomex.com/lab/?ak_action=api_record_view&id=1020&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.zomex.com/lab/tutorials/whmcs1/fix-seo-friendly-urls-error.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Google Analytics to your WHMCS template</title>
		<link>http://www.zomex.com/lab/tutorials/whmcs1/add-google-analytics-to-whmcs-theme.php</link>
		<comments>http://www.zomex.com/lab/tutorials/whmcs1/add-google-analytics-to-whmcs-theme.php#comments</comments>
		<pubDate>Fri, 20 Apr 2012 11:18:53 +0000</pubDate>
		<dc:creator>Jack Curtis</dc:creator>
				<category><![CDATA[WHMCS]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[google code]]></category>
		<category><![CDATA[tracking code]]></category>
		<category><![CDATA[whmcs templates]]></category>
		<category><![CDATA[whmcs themes]]></category>

		<guid isPermaLink="false">http://www.zomex.com/lab/?p=1010</guid>
		<description><![CDATA[&#160; WHMCS have since released a official module that makes installing Google Analytics very easy making the following guide no longer required (unless you&#8217;re using a version under 4.5). Click Here To Download, It&#8217;s Free! In this tutorial we&#8217;ll cover how to add Google Analytics to your WHMCS based website. This tutorial is aimed specifically [...]]]></description>
			<content:encoded><![CDATA[<div class="highlightbox">
<div class="top">&nbsp;</div>
<div class="contents">
<p>WHMCS have since released a <strong>official module</strong> that makes <strong>installing Google Analytics very easy</strong> making the following guide no longer required (unless you&#8217;re using a version under 4.5).</p>
<p class="aligncenter"><a href="http://www.whmcs.com/members/communityaddons.php?action=viewmod&#038;id=314" class="button1 wide orange2">Click Here To Download, It&#8217;s Free!</a></p>
</div>
</div>
<p>In this tutorial we&#8217;ll cover how to add Google Analytics to your WHMCS based website. This tutorial is aimed specifically at our premium <a href="/templates/web-hosting/whmcs/">WHMCS Theme</a> but will work with any WHMCS template.</p>
<p>Firstly you&#8217;ll need to signup for Google Analytics, add your website and then you&#8217;ll be provided with some Javascript code:</p>
<p><pre><pre style="background: yellow; padding:5px;">
&lt;script type=&quot;text/javascript&quot;&gt;

var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;);

document.write(unescape(&quot;%3Cscript src=&#039;&quot; + gaJsHost + &quot;google-analytics.com/ga.js&#039;
type=&#039;text/javascript&#039;%3E%3C/script%3E&quot;));

&lt;/script&gt;
</pre></pre></p>
<p>Next you&#8217;ll need to wrap this code in {literal}{/literal} tags. These are specific tags for the template system that WHMCS runs on (Smarty) that basically tells the browser to run the code inside exactly how it is and don&#8217;t confuse it with WHMCS/smarty code (stops conflict). In short these are required for any inline Javascript/CSS used in WHMCS templates.</p>
<p>Once added your code should look like:</p>
<p><pre><pre style="background: yellow; padding:5px;">
{literal}
&lt;script type=&quot;text/javascript&quot;&gt;

var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;);

document.write(unescape(&quot;%3Cscript src=&#039;&quot; + gaJsHost + &quot;google-analytics.com/ga.js&#039;
type=&#039;text/javascript&#039;%3E%3C/script%3E&quot;));

&lt;/script&gt;
{/literal}
</pre></pre></p>
<p>Finaly to install your code open the following file:</p>
<p>/templates/YOUR_TEMPLATE/footer.tpl</p>
<p>and the code just before the following tag (at the bottom of the footer.tpl file):</p>
<p><pre>&lt;/body&gt;</pre></p>
<p class="aligncenter margintop30"><a href="/templates/web-hosting/whmcs/"><img src="/libs/images/layout/whmcs-templates-banner.gif" width="728" height="90" alt="premium whmcs themes" /></a></p>
<img src="http://www.zomex.com/lab/?ak_action=api_record_view&id=1010&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.zomex.com/lab/tutorials/whmcs1/add-google-analytics-to-whmcs-theme.php/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WHMCS Themes &#8211; Admin Based Settings Area!</title>
		<link>http://www.zomex.com/lab/video-tutorials/whmcs-templates2/admin-based-settings-area.php</link>
		<comments>http://www.zomex.com/lab/video-tutorials/whmcs-templates2/admin-based-settings-area.php#comments</comments>
		<pubDate>Wed, 28 Mar 2012 16:06:11 +0000</pubDate>
		<dc:creator>Jack Curtis</dc:creator>
				<category><![CDATA[WHMCS Templates]]></category>
		<category><![CDATA[admin settings area]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[settings area]]></category>
		<category><![CDATA[template manager]]></category>
		<category><![CDATA[whmcs templates]]></category>
		<category><![CDATA[whmcs themes]]></category>
		<category><![CDATA[zomex template manager]]></category>

		<guid isPermaLink="false">http://www.zomex.com/lab/?p=829</guid>
		<description><![CDATA[Watch WHMCS Themes Settings Area on Youtube. &#160;]]></description>
			<content:encoded><![CDATA[<div class="aligncenter">
<object width="640" height="480"><param name="movie" value="http://www.youtube-nocookie.com/v/iKva9CjNi-U?version=3&amp;hl=en_US&amp;rel=0&amp;autoplay=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/iKva9CjNi-U?version=3&amp;hl=en_US&amp;rel=0&amp;autoplay=1" type="application/x-shockwave-flash" width="640" height="480" allowscriptaccess="always" allowfullscreen="true"></embed></object>
</div>
<p class="center margintop10">Watch <a href="http://www.youtube.com/watch?v=iKva9CjNi-U" target="_blank" title="WHMCS Themes Settings Area">WHMCS Themes Settings Area</a> on Youtube.</p>
<div class="clear margintop30">&nbsp;</div>
<p class="aligncenter"><a href="/templates/web-hosting/whmcs/"><img src="/libs/images/layout/whmcs-templates-banner.gif" width="728" height="90" alt="premium whmcs themes" /></a></p>
<img src="http://www.zomex.com/lab/?ak_action=api_record_view&id=829&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.zomex.com/lab/video-tutorials/whmcs-templates2/admin-based-settings-area.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHMCS Themes &#8211; Multi-display options demo</title>
		<link>http://www.zomex.com/lab/video-tutorials/whmcs-templates2/multi-display-options.php</link>
		<comments>http://www.zomex.com/lab/video-tutorials/whmcs-templates2/multi-display-options.php#comments</comments>
		<pubDate>Wed, 28 Mar 2012 16:05:58 +0000</pubDate>
		<dc:creator>Jack Curtis</dc:creator>
				<category><![CDATA[WHMCS Templates]]></category>
		<category><![CDATA[change display]]></category>
		<category><![CDATA[multi display]]></category>
		<category><![CDATA[whmcs templates]]></category>

		<guid isPermaLink="false">http://www.zomex.com/lab/?p=838</guid>
		<description><![CDATA[Watch WHMCS Themes multi-display options on Youtube. &#160;]]></description>
			<content:encoded><![CDATA[<div class="aligncenter">
<object width="640" height="480"><param name="movie" value="http://www.youtube-nocookie.com/v/yOYGks3MsKA?version=3&amp;hl=en_US&amp;rel=0&amp;autoplay=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/yOYGks3MsKA?version=3&amp;hl=en_US&amp;rel=0&amp;autoplay=1" type="application/x-shockwave-flash" width="640" height="480" allowscriptaccess="always" allowfullscreen="true"></embed></object>
</div>
<p class="center margintop10">Watch <a href="http://www.youtube.com/watch?v=yOYGks3MsKA" target="_blank" title="WHMCS Themes multi-display options">WHMCS Themes multi-display options</a> on Youtube.</p>
<div class="clear margintop30">&nbsp;</div>
<p class="aligncenter"><a href="/templates/web-hosting/whmcs/"><img src="/libs/images/layout/whmcs-templates-banner.gif" width="728" height="90" alt="premium whmcs themes" /></a></p>
<img src="http://www.zomex.com/lab/?ak_action=api_record_view&id=838&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.zomex.com/lab/video-tutorials/whmcs-templates2/multi-display-options.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to upgrade your WHMCS template to V3.4</title>
		<link>http://www.zomex.com/lab/tutorials/whmcs1/upgrade-template-to-v3-4.php</link>
		<comments>http://www.zomex.com/lab/tutorials/whmcs1/upgrade-template-to-v3-4.php#comments</comments>
		<pubDate>Wed, 28 Mar 2012 16:05:45 +0000</pubDate>
		<dc:creator>Jack Curtis</dc:creator>
				<category><![CDATA[WHMCS]]></category>
		<category><![CDATA[3.4]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[whmcs templates]]></category>

		<guid isPermaLink="false">http://www.zomex.com/lab/?p=841</guid>
		<description><![CDATA[The update to V3.4 is well worth doing as from this point anything changed in the settings area (plans names, specs, pricing, general settings, seo settings etc) will not be lost when doing future upgrades. Click Here To Hire Us For This This guide is specifically for those that have not made any changes to [...]]]></description>
			<content:encoded><![CDATA[<p>The update to V3.4 is well worth doing as from this point anything changed in the settings area (plans names, specs, pricing, general settings, seo settings etc) will not be lost when doing future upgrades.</p>
<p class="aligncenter margintop20"><a class="button1 wide orange2" href="/clients/cart.php?a=add&#038;pid=112">Click Here To Hire Us For This</a></p>
<p>This guide is specifically for those that have not made any changes to the template files or those that are happy to re-add them to the new version.</p>
<p><span style="color:red;font-weight:bold;">1) Download the latest version</span> &#8211; Login to your Zomex.com account, at the top of the page hover over My Account and click on My Products. Next select view details, click on the downloads tab and then download V3.4.</p>
<p><span style="color:red;font-weight:bold;">2) Unzip the folder</span> &#8211; Move the .zip file to your desktop and unzip/extract the contents.</p>
<p><span style="color:red;font-weight:bold;">3) Open up your FTP program &#038; uploads modules</span> &#8211; Open up your FTP program, on the left open up the template folder > upload and on the right side open up the root WHMCS folder. <strong>Upload only the modules folder from the template download</strong>. By uploading only the modules folder you&#8217;ll be able to apply your plans to the new settings area without effecting the old version.</p>
<p><span style="color:red;font-weight:bold;">4) Login to WHMCS and activate the settings area</span> &#8211; Login to WHMCS, go to setup > Addon Modules. Scroll down to the bottom and you&#8217;ll see a new module named Zomex Template Manager, click on activate and then scroll down to the bottom of this page. Under the access control for Zomex Template Manager select Full Administrator and click save.</p>
<p><span style="color:red;font-weight:bold;">5) Apply your license &#038; settings</span> &#8211; You&#8217;ll now notice a new link under the addons tab named Zomex Template Manager, click this. Once the page has loaded you&#8217;ll be prompted to add your template license key. Add the license key for your template (the same one used in the configuration_template.php file &#8211; it will work for both locations without causing issues). Next you&#8217;ll see the new settings area appear. At this stage you can match the settings in your configuration_template.php file using the following guide:</p>
<p><a href="/lab/tutorials/whmcs1/zomex-template-manager.php"><strong>Zomex Template Manager</strong></a></p>
<p><span style="color:red;font-weight:bold;">6) Upload all files and activate</span> &#8211; Next go back to your FTP program and upload all of the template files to root &#8211; the contents of the &#8220;upload&#8221; folder (it&#8217;s ok if you re-upload the module folder as the settings are stored in the database). Lastly activate the V3.4 version under setup > general settings > template ></p>
<p class="aligncenter margintop20"><a class="button1 wide orange2" href="/clients/cart.php?a=add&#038;pid=112">Click Here To Hire Us For This</a></p>
<img src="http://www.zomex.com/lab/?ak_action=api_record_view&id=841&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.zomex.com/lab/tutorials/whmcs1/upgrade-template-to-v3-4.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHMCS Themes &#8211; How to change the hosting type of a default page</title>
		<link>http://www.zomex.com/lab/tutorials/whmcs1/how-to-change-the-hosting-type-of-a-default-page.php</link>
		<comments>http://www.zomex.com/lab/tutorials/whmcs1/how-to-change-the-hosting-type-of-a-default-page.php#comments</comments>
		<pubDate>Wed, 28 Mar 2012 16:05:32 +0000</pubDate>
		<dc:creator>Jack Curtis</dc:creator>
				<category><![CDATA[WHMCS]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[whmcs]]></category>
		<category><![CDATA[whmcs templates]]></category>
		<category><![CDATA[whmcs themes]]></category>

		<guid isPermaLink="false">http://www.zomex.com/lab/?p=875</guid>
		<description><![CDATA[In this tutorial you&#8217;ll learn how to change one of the WHMCS Template hosting pages to something else. For example you might want to provide windows hosting in replacement of reseller hosting, in this case it&#8217;s very easy to change the reseller hosting page to windows hosting. For this tutorial let&#8217;s say you want to [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial you&#8217;ll learn how to change one of the <a href="/templates/web-hosting/whmcs/">WHMCS Template</a> hosting pages to something else. For example you might want to provide windows hosting in replacement of reseller hosting, in this case it&#8217;s very easy to change the reseller hosting page to windows hosting.</p>
<p>For this tutorial let&#8217;s say you want to change reseller hosting (custom 2) to windows hosting:</p>
<h3>1) Rename the files</h3>
<p>Firstly you&#8217;ll want to rename the page (for <a href="/services/search-engine-optimization.php">search engine optimization</a> reasons).</p>
<p>To do this login to cPanel or your FTP program, navigate to /public_html, right click <strong>reseller-hosting.php</strong> and re-name to <strong>windows-hosting.php</strong></p>
<p>Next navigate to /public_html/templates/YOUR_TEMPLATE/, rename <strong>reseller-hosting.tpl</strong> to <strong>windows-hosting.tpl</strong></p>
<h3>2) Adjust the page settings</h3>
<p>Open the following file:</p>
<p><strong>/public_html/configuration_template_v3-4.php</strong></p>
<p>scroll down to the bottom of the file and find the settings for custom2 as so:</p>
<div class="featureimage">
<img src="/libs/images/layout/custom-page-settings.jpg" alt="WHMCS page setting" /><br />
<span>A screenshot showing the page settings</span>
</div>
<p>Change the page and template line to match the new names as so:</p>
<p class="code">$custom2_language_title = &#8216;custom1title&#8217;;<br />
$custom2_page = &#8216;<strong>windows-hosting.php</strong>&#8216;;<br />
$custom2_tpl = &#8216;<strong>windows-hosting</strong>&#8216;;<br />
$custom2_forcessl = &#8216;off&#8217;;</p>
<h3>3) Tweak the language references</h3>
<p>Next you&#8217;ll need to change the custom2 references in the language file(s) to Windows Hosting. To do this we&#8217;ll use English as an example language. Open the following file:</p>
<p><strong>/public_html/modules/addons/zomex_template_manager/lang/english.php</strong></p>
<p>Replace:</p>
<p class="code">$_LANG['custom2title'] = &#8220;<strong>Reseller Hosting</strong>&#8243;;</p>
<p>with:</p>
<p class="code">$_LANG['custom2title'] = &#8220;<strong>Windows Hosting</strong>&#8220;;</p>
<p>^ This will change the page title to Windows Hosting.</p>
<hr />
<p>Replace:</p>
<p class="code">$_LANG['menu_custom2'] = &#8220;<strong>Reseller Hosting</strong>&#8243;;</p>
<p>with:</p>
<p class="code">$_LANG['menu_custom2'] = &#8220;<strong>Windows Hosting</strong>&#8220;;</p>
<p>^ This will change the menu under the hosting category to read Windows Hosting.</p>
<hr />
<h3>4) Change the settings area to reflect</h3>
<p>Next you&#8217;ll need to change the link on the menu from reseller-hosting.php to windows-hosting.php &#038; the reference to the page.</p>
<p>Login to WHMCS and go to addons > Zomex Template Manager:</p>
<p>Open the Reseller Hosting tab and change the page title &#038; page URL to reflect:</p>
<div class="featureimage">
<img src="/libs/images/layout/reseller-hosting-page.jpg" alt="WHMCS reseller page" /><br />
<span>A screenshot showing the new page settings</span>
</div>
<p>Click save changes. Once saved all references to Reseller Hosting will be automatically changed to Windows Hosting (page title) and reseller-hosting.php links in the template will be changed to windows-hosting.php (page url).</p>
<p>Lastly open the search engine optimization tab and change the page title, meta description &#038; tags to match the new page:</p>
<div class="featureimage">
<img src="/libs/images/layout/windows-hosting-seo.jpg" alt="windows hosting seo" /><br />
<span>A screenshot showing the new seo settings</span>
</div>
<p>^ As you can see, the previous change means the Reseller Hosting was already changed to Windows Hosting so it&#8217;s easy to find.</p>
<img src="http://www.zomex.com/lab/?ak_action=api_record_view&id=875&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.zomex.com/lab/tutorials/whmcs1/how-to-change-the-hosting-type-of-a-default-page.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHMCS Themes &#8211; How to add links to the menu</title>
		<link>http://www.zomex.com/lab/tutorials/whmcs1/how-to-add-links-to-the-menu.php</link>
		<comments>http://www.zomex.com/lab/tutorials/whmcs1/how-to-add-links-to-the-menu.php#comments</comments>
		<pubDate>Wed, 28 Mar 2012 16:05:18 +0000</pubDate>
		<dc:creator>Jack Curtis</dc:creator>
				<category><![CDATA[WHMCS]]></category>
		<category><![CDATA[add link]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[menu links]]></category>
		<category><![CDATA[template menu]]></category>
		<category><![CDATA[whmcs template]]></category>

		<guid isPermaLink="false">http://www.zomex.com/lab/?p=893</guid>
		<description><![CDATA[In this tutorial you&#8217;ll learn how to add custom links to the menu of your WHMCS Template. Open the following file: /templates/YOUR_TEMPLATE/includes/menu.tpl As you can see the above file is well noted showing exactly what code is used for each link. The blocks of code represent a dropdown link (domains, hosting, company). If you&#8217;d like [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial you&#8217;ll learn how to add custom links to the menu of your <a href="/templates/web-hosting/whmcs/">WHMCS Template</a>.</p>
<p>Open the following file:</p>
<p class="code"><strong>/templates/YOUR_TEMPLATE/includes/menu.tpl</strong></p>
<p>As you can see the above file is well noted showing exactly what code is used for each link. The blocks of code represent a dropdown link (domains, hosting, company).</p>
<p>If you&#8217;d like to add a sub-link then you&#8217;d add the code listed below for your template just above the </ul>
<p> of that block code.</p>
<p>If you&#8217;d like to add a main menu link then you&#8217;d add the code listed below between the marked links.</p>
<p>In the following examples the code will be for a page named &#8220;Custom&#8221; linking to custom.php. The bold text is what you&#8217;d need to edit for your own page(s).</p>
<hr />
<h2>Blue Blaze</h2>
<p>The code below is for the Blue Blaze template.</p>
<h3>Main menu link</h3>
<p class="code">&lt;li{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;active&quot;{/if}&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The Custom reference to the left needs to be the .php pagename without .php. This will make the tab highlighted when on this page. The middle custom.php is the link to the page (can also be full URL such as http://www.google.com/). The right Custom reference is the link text that will be visible.</p>
<h3>Main menu link (dropdown)</h3>
<p class="code">&lt;li{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;active&quot;{/if}&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;<br />
&lt;ul class=&quot;children&quot;&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/li&gt;
</p>
<p>^ The above code will load a dropdown menu link named Custom showing Sub1 &#038; Sub2 when hovered over.</p>
<h3>Sub-menu link</h3>
<p class="code">&lt;li&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The above code is used for the sub-menu (e.g the Bulk Domain Transfer link under the domains menu).</p>
<hr />
<h2>Bright Fury</h2>
<p>The code below is for the Bright Fury template.</p>
<h3>Main menu link</h3>
<p class="code">&lt;li&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;current&quot;{/if}&gt;&lt;span&gt;&lt;/span&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The Custom reference to the left needs to be the .php pagename without .php. This will make the tab highlighted when on this page. The middle custom.php is the link to the page (can also be full URL such as http://www.google.com/). The right Custom reference is the link text that will be visible.</p>
<h3>Main menu link (dropdown)</h3>
<p class="code">&lt;li&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;current&quot;{/if}&gt;&lt;span&gt;&lt;/span&gt;<strong>Custom</strong>&lt;/a&gt;<br />
&lt;ul class=&quot;children&quot;&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/li&gt;
</p>
<p>^ The above code will load a dropdown menu link named Custom showing Sub1 &#038; Sub2 when hovered over.</p>
<h3>Sub-menu link</h3>
<p class="code">&lt;li&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The above code is used for the sub-menu (e.g the Bulk Domain Transfer link under the domains menu).</p>
<hr />
<h2>Heat Wave</h2>
<p>The code below is for the Heat Wave template.</p>
<h3>Main menu link</h3>
<p class="code">&lt;li{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;active&quot;{/if}&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The Custom reference to the left needs to be the .php pagename without .php. This will make the tab highlighted when on this page. The middle custom.php is the link to the page (can also be full URL such as http://www.google.com/). The right Custom reference is the link text that will be visible.</p>
<h3>Main menu link (dropdown)</h3>
<p class="code">&lt;li{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;active&quot;{/if}&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;<br />
&lt;ul class=&quot;children&quot;&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/li&gt;
</p>
<p>^ The above code will load a dropdown menu link named Custom showing Sub1 &#038; Sub2 when hovered over.</p>
<h3>Sub-menu link</h3>
<p class="code">&lt;li&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The above code is used for the sub-menu (e.g the Bulk Domain Transfer link under the domains menu).</p>
<hr />
<h2>Ice Host</h2>
<p>The code below is for the Ice Host template.</p>
<h3>Main menu link</h3>
<p class="code">&lt;li{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;active&quot;{/if}&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The Custom reference to the left needs to be the .php pagename without .php. This will make the tab highlighted when on this page. The middle custom.php is the link to the page (can also be full URL such as http://www.google.com/). The right Custom reference is the link text that will be visible.</p>
<h3>Main menu link (dropdown)</h3>
<p class="code">&lt;li{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;active&quot;{/if}&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;<br />
&lt;ul class=&quot;children&quot;&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/li&gt;
</p>
<p>^ The above code will load a dropdown menu link named Custom showing Sub1 &#038; Sub2 when hovered over.</p>
<h3>Sub-menu link</h3>
<p class="code">&lt;li&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The above code is used for the sub-menu (e.g the Bulk Domain Transfer link under the domains menu).</p>
<hr />
<h2>Orange Fusion</h2>
<p>The code below is for the Orange Fusion template.</p>
<h3>Main menu link</h3>
<p class="code">&lt;li{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;active&quot;{/if}&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;&lt;span&gt;&lt;/span&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The Custom reference to the left needs to be the .php pagename without .php. This will make the tab highlighted when on this page. The middle custom.php is the link to the page (can also be full URL such as http://www.google.com/). The right Custom reference is the link text that will be visible.</p>
<h3>Main menu link (dropdown)</h3>
<p class="code">&lt;li{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;active&quot;{/if}&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;&lt;span&gt;&lt;/span&gt;<strong>Custom</strong>&lt;/a&gt;<br />
&lt;ul class=&quot;children&quot;&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/li&gt;
</p>
<p>^ The above code will load a dropdown menu link named Custom showing Sub1 &#038; Sub2 when hovered over.</p>
<h3>Sub-menu link</h3>
<p class="code">&lt;li&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The above code is used for the sub-menu (e.g the Bulk Domain Transfer link under the domains menu).</p>
<hr />
<h2>Ruby Host</h2>
<p>The code below is for the Ruby Host template.</p>
<h3>Main menu link</h3>
<p class="code">&lt;li{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;active&quot;{/if}&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The Custom reference to the left needs to be the .php pagename without .php. This will make the tab highlighted when on this page. The middle custom.php is the link to the page (can also be full URL such as http://www.google.com/). The right Custom reference is the link text that will be visible.</p>
<h3>Main menu link (dropdown)</h3>
<p class="code">&lt;li{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;active&quot;{/if}&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;<br />
&lt;ul class=&quot;children&quot;&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/li&gt;
</p>
<p>^ The above code will load a dropdown menu link named Custom showing Sub1 &#038; Sub2 when hovered over.</p>
<h3>Sub-menu link</h3>
<p class="code">&lt;li&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The above code is used for the sub-menu (e.g the Bulk Domain Transfer link under the domains menu).</p>
<hr />
<h2>Sequence Host</h2>
<p>The code below is for the Sequence Host template.</p>
<h3>Main menu link</h3>
<p class="code">&lt;li{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;active&quot;{/if}&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The Custom reference to the left needs to be the .php pagename without .php. This will make the tab highlighted when on this page. The middle custom.php is the link to the page (can also be full URL such as http://www.google.com/). The right Custom reference is the link text that will be visible.</p>
<h3>Main menu link (dropdown)</h3>
<p class="code">&lt;li{if $filename eq &quot;<strong>custom</strong>&quot;} class=&quot;active&quot;{/if}&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;<br />
&lt;ul class=&quot;children&quot;&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&quot;<strong>sub1.php</strong>&quot;&gt;<strong>Sub1</strong>&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/li&gt;
</p>
<p>^ The above code will load a dropdown menu link named Custom showing Sub1 &#038; Sub2 when hovered over.</p>
<h3>Sub-menu link</h3>
<p class="code">&lt;li&gt;&lt;a href=&quot;<strong>custom.php</strong>&quot;&gt;<strong>Custom</strong>&lt;/a&gt;&lt;/li&gt;</p>
<p>^ The above code is used for the sub-menu (e.g the Bulk Domain Transfer link under the domains menu).</p>
<hr />
<img src="http://www.zomex.com/lab/?ak_action=api_record_view&id=893&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.zomex.com/lab/tutorials/whmcs1/how-to-add-links-to-the-menu.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHMCS Themes &#8211; How to make a page use full width</title>
		<link>http://www.zomex.com/lab/tutorials/whmcs1/whmcs-templates-full-width.php</link>
		<comments>http://www.zomex.com/lab/tutorials/whmcs1/whmcs-templates-full-width.php#comments</comments>
		<pubDate>Wed, 28 Mar 2012 16:05:04 +0000</pubDate>
		<dc:creator>Jack Curtis</dc:creator>
				<category><![CDATA[WHMCS]]></category>
		<category><![CDATA[custom page]]></category>
		<category><![CDATA[full width]]></category>
		<category><![CDATA[whmcs theme]]></category>
		<category><![CDATA[whmcs themes]]></category>
		<category><![CDATA[wide page]]></category>

		<guid isPermaLink="false">http://www.zomex.com/lab/?p=927</guid>
		<description><![CDATA[All of our WHMCS Themes allow you to make a page use the full width available (no sidebar) quite easily. Each template uses full width for the register, clientarea, creditcard &#038; cart pages by default so the functionality exists. If you&#8217;d like to make your own page or an existing page use full width it [...]]]></description>
			<content:encoded><![CDATA[<p>All of our <a href="/templates/web-hosting/whmcs/">WHMCS Themes</a> allow you to make a page use the full width available (no sidebar) quite easily.</p>
<p>Each template uses full width for the register, clientarea, creditcard &#038; cart pages by default so the functionality exists. If you&#8217;d like to make your own page or an existing page use full width it would simply be a matter of adding it to the existing code. This tutorial will explain how it&#8217;s done for each template.</p>
<p>For the sake of this tutorial we&#8217;ll assume that you&#8217;ve created a page named custom.php.</p>
<p><strong>Note, the text used between the double quotes for each if filename = &#8220;&#8221; is the page name without the .php extension. So as you can see register.php (register), clientarea.php (clientarea), creditcard.php (creditcard) &#038; cart.php (cart) are already setup to use full width.</strong></p>
<hr />
<h2>Blue Blaze</h2>
<p>Firstly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/header.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}<br />
&lt;div class=&quot;leftC-wide&quot;&gt;<br />
{else}<br />
&lt;div class=&quot;leftC&quot;&gt;<br />
{/if}</p>
<p>change this to:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}<br />
&lt;div class=&quot;leftC-wide&quot;&gt;<br />
{else}<br />
&lt;div class=&quot;leftC&quot;&gt;<br />
{/if}</p>
<p>Lastly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/footer.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}{else}</p>
<p>change this to:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}{else}</p>
<p>When visiting this page you should now see it load using the width width without the sidebar.</p>
<hr />
<h2>Ruby Host</h2>
<p>Firstly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/header.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">&lt;div id=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}left-sub-wide{else}left-sub{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}box1-sub-wide{else}box1-sub{/if}&quot;&gt;</p>
<p>change this to:</p>
<p class="code">&lt;div id=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}left-sub-wide{else}left-sub{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}box1-sub-wide{else}box1-sub{/if}&quot;&gt;</p>
<p>Lastly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/footer.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}{else}</p>
<p>change this to:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}{else}</p>
<p>When visiting this page you should now see it load using the width width without the sidebar.</p>
<hr />
<h2>Sequence Host</h2>
<p>Firstly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/header.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}leftSideCon-wide{else}leftSideCon{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}information-wide{else}information{/if}&quot;&gt;</p>
<p>change this to:</p>
<p class="code">&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}leftSideCon-wide{else}leftSideCon{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}information-wide{else}information{/if}&quot;&gt;</p>
<p>Lastly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/footer.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}{else}</p>
<p>change this to:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}{else}</p>
<p>When visiting this page you should now see it load using the width width without the sidebar.</p>
<hr />
<h2>Ice Host</h2>
<p>Firstly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/header.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}leftC-wide{else}leftC{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}information-wide{else}information{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}informationContents-wide{else}informationContents{/if}&quot;&gt;</p>
<p>change this to:</p>
<p class="code">&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}leftC-wide{else}leftC{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}information-wide{else}information{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}informationContents-wide{else}informationContents{/if}&quot;&gt;</p>
<p>Lastly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/footer.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}{else}</p>
<p>change this to:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}{else}</p>
<p>When visiting this page you should now see it load using the width width without the sidebar.</p>
<hr />
<h2>Heat Wave</h2>
<p>Firstly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/header.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}leftC-wide{else}leftC{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}box2-wide{else}box2{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}box2Top-wide{else}box2Top{/if}&quot;&gt;&lt;/div&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}box2Contents-wide{else}box2Contents{/if}&quot;&gt;</p>
<p>change this to:</p>
<p class="code">&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}leftC-wide{else}leftC{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}box2-wide{else}box2{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}box2Top-wide{else}box2Top{/if}&quot;&gt;&lt;/div&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}box2Contents-wide{else}box2Contents{/if}&quot;&gt;</p>
<p>Lastly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/footer.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}{else}</p>
<p>change this to:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}{else}</p>
<p>When visiting this page you should now see it load using the width width without the sidebar.</p>
<hr />
<h2>Orange Fusion</h2>
<p>Firstly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/header.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}LeftCon-wide{else}LeftCon{/if}{if $filename eq &quot;index&quot;} homecon{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}box3top-wide{else}box3top{/if}&quot;&gt;&lt;/div&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}box3-wide{else}box3{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}box3Contents-wide{else}box3Contents{/if}&quot;&gt;</p>
<p>change this to:</p>
<p class="code">&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}LeftCon-wide{else}LeftCon{/if}{if $filename eq &quot;index&quot;} homecon{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}box3top-wide{else}box3top{/if}&quot;&gt;&lt;/div&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}box3-wide{else}box3{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}box3Contents-wide{else}box3Contents{/if}&quot;&gt;</p>
<p>Lastly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/footer.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}{else}</p>
<p>change this to:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}{else}</p>
<p>When visiting this page you should now see it load using the width width without the sidebar.</p>
<hr />
<h2>Bright Fury</h2>
<p>Firstly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/header.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}bodyLeft-wide{else}bodyLeft{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}box02Con-wide{else}box02Con{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}box02Top-wide{else}box02Top{/if}&quot;&gt;&lt;/div&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}box02content-wide{else}box02content{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}box02content2-wide{else}box02content2{/if}&quot;&gt;</p>
<p>change this to:</p>
<p class="code">&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}bodyLeft-wide{else}bodyLeft{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}box02Con-wide{else}box02Con{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}box02Top-wide{else}box02Top{/if}&quot;&gt;&lt;/div&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}box02content-wide{else}box02content{/if}&quot;&gt;<br />
&lt;div class=&quot;{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}box02content2-wide{else}box02content2{/if}&quot;&gt;</p>
<p>Lastly open the following file:</p>
<p><strong>/templates/YOUR_TEMPLATE/footer.tpl</strong></p>
<p>scroll down and find the following code:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot;}{else}</p>
<p>change this to:</p>
<p class="code">{if $filename eq &quot;register&quot; or $filename eq &quot;clientarea&quot; or $filename eq &quot;creditcard&quot; or $filename eq &quot;cart&quot; <strong>or $filename eq &quot;custom&quot;</strong>}{else}</p>
<p>When visiting this page you should now see it load using the width width without the sidebar.</p>
<hr />
<img src="http://www.zomex.com/lab/?ak_action=api_record_view&id=927&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.zomex.com/lab/tutorials/whmcs1/whmcs-templates-full-width.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHMCS Themes &#8211; Zomex Template Manager (settings area)</title>
		<link>http://www.zomex.com/lab/tutorials/whmcs1/zomex-template-manager.php</link>
		<comments>http://www.zomex.com/lab/tutorials/whmcs1/zomex-template-manager.php#comments</comments>
		<pubDate>Tue, 27 Mar 2012 21:57:53 +0000</pubDate>
		<dc:creator>Jack Curtis</dc:creator>
				<category><![CDATA[WHMCS]]></category>
		<category><![CDATA[template manager]]></category>
		<category><![CDATA[template settings]]></category>
		<category><![CDATA[website manager]]></category>
		<category><![CDATA[whmcs templates]]></category>
		<category><![CDATA[whmcs themes]]></category>

		<guid isPermaLink="false">http://www.zomex.com/lab/?p=833</guid>
		<description><![CDATA[Since V3.4 our WHMCS Themes come with a built-in settings area called Zomex Template Manager. With the settings area you can add/edit your plans, adust display options &#038; more without any HTML experience. A screenshot of the easy to use settings area. Click here to watch a video tour Once your template has been installed [...]]]></description>
			<content:encoded><![CDATA[<p>Since V3.4 our <a href="/templates/web-hosting/whmcs/">WHMCS Themes</a> come with a built-in settings area called Zomex Template Manager. With the settings area you can add/edit your plans, adust display options &#038; more without any HTML experience.</p>
<div class="featureimage">
<img src="/libs/images/layout/whmcs-templates-setting-area.jpg" alt="WHMCS template settings" /><br />
<span>A screenshot of the easy to use settings area.</span>
</div>
<p class="aligncenter"><a href="/files/videos/whmcs-settings-area.php" class="lightbox-flash" title="View the template manager in action!" class="orange"><strong>Click here to watch a video tour</strong></a></p>
<p>Once your template has been installed you&#8217;ll be able to access the settings area from inside your WHMCS admin panel under addons > Zomex Template Manager as seen below:</p>
<div class="featureimage">
<img src="/libs/images/layout/template-manager.jpg" alt="zomex template manager" /><br />
<span>Zomex Template Manager link.</span>
</div>
<p>Below is a list of each settings and what they are for:</p>
<h2>General</h2>
<p><span style="color:red;font-weight:bold;">Currency</span> &#8211; The currency used throughout the template. Specifically the currency you set here will be applied to the web hosting boxes (assuming you&#8217;re using the boxes layout).</p>
<p><span style="color:red;font-weight:bold;">Favicon URL</span> &#8211; Here you can set the URL to your favicon (this is a small icon that can be seen on the address bar on some websites). By default we&#8217;ve included a favicon that&#8217;s hosted on our servers. It&#8217;s loaded by a secure (https://) URL so it will not break any SSL certificate. The favicon must be 16px x 16px in .ico format (Google favicon generators).</p>
<h2>Homepage</h2>
<p><span style="color:red;font-weight:bold;">Slideshow</span> &#8211; By default each template displays rotating banners, by turning this setting off it will be replaced with a static banner (a faster and more SEO friendly alternative). This same static banner is also displayed if the visitor has javascript turned off.</p>
<p><span style="color:red;font-weight:bold;">Number Of Slides</span> &#8211; Here you can set the number of slides (images) to be use for the slideshow. By default each template has 2, you can add up to 5 using the <a href="/lab/tutorials/whmcs1/templates-add-more-slides.php">WHMCS template slideshow</a> guide.</p>
<p><span style="color:red;font-weight:bold;">Slideshow Captions</span> &#8211; This settings allows you to turn-off the captions displayed on the slideshow (descriptive text).</p>
<p><span style="color:red;font-weight:bold;">Slideshow Navigation</span> &#8211; Here you can turn-off the navigation circles that show just underneath the slideshow by default.</p>
<p><span style="color:red;font-weight:bold;">Feature Boxes</span> &#8211; These are the boxes that show just underneath the slideshow on the homepage. You can change this setting to display 3, 6 or turn them off completely.</p>
<p><span style="color:red;font-weight:bold;">Feature Boxes Settings</span> &#8211; In this section you can setup the 3/6 feature boxes including the name, features, pricing, learn more and order links.</p>
<h2>Web Hosting page (the same for all 6)</h2>
<p><span style="color:red;font-weight:bold;">Page Title</span> &#8211; If you wish to change one of the hosting pages to something different you&#8217;ll want to edit this setting. The name you apply here is applied to all references to this page in the settings area (pages/features section &#038; SEO section).</p>
<p><span style="color:red;font-weight:bold;">Page URL</span> &#8211; The URL you set here (without the .php extension) will automatically be applied to links in the template (e.g the top menu). It&#8217;s also used for page detection (for the active menu button &#038; SEO settings).</p>
<p><span style="color:red;font-weight:bold;">Layout Option</span> &#8211; Here you can change the layout style on the hosting page between a boxes &#038; table style display.</p>
<p><span style="color:red;font-weight:bold;">Number Of Plans</span> &#8211; Choose to display between 1 &#038; 6 plans for this page. If you&#8217;re using the table layout adjusting this setting will change the amount of columns, if the boxes layout it&#8217;ll change the amount of boxes.</p>
<p><span style="color:red;font-weight:bold;">Global Settings</span> &#8211; These settings are applied to both the table layout &#038; boxes layout. Here you can set the plan names, monthly pricing &#038; order links.</p>
<p><span style="color:red;font-weight:bold;">Table Layout</span> &#8211; This section allows you to change the table titles, features &#038; specs. You can also use a value of check or cross for the options to automatically display a tick or cross icon (representing included/not included). The name and order links for each plan are taken from those set in the global settings.</p>
<p><span style="color:red;font-weight:bold;">Boxes Layout</span> &#8211; You can set the unique 5 features for each plan for the boxes layout here. The name and order links for each plan are taken from those set in the global settings.</p>
<h2>Pages/Features</h2>
<p><span style="color:red;font-weight:bold;">Affiliates</span> &#8211; Here you can turn on/off the affiliates link in the menus. By setting this to off it&#8217;ll also remove the affiliates icon from the portal page.</p>
<p><span style="color:red;font-weight:bold;">Domains</span> &#8211; Here you can turn on/off the domains link in the menus. By setting this to off it&#8217;ll also remove the domain checker icon from the portal page and the domain checker box from the homepage.</p>
<p><span style="color:red;font-weight:bold;">Company</span> &#8211; Here you can turn on/off the company page in the menus.</p>
<p><span style="color:red;font-weight:bold;">Portal</span> &#8211; Here you can turn on/off the portal page in the menus.</p>
<p><span style="color:red;font-weight:bold;">Terms Of Service</span> &#8211; Here you can turn on/off the terms of service page, turning it off will remove the link in the footer.</p>
<p><span style="color:red;font-weight:bold;">Acceptable Usage Policy</span> &#8211; Here you can turn on/off the acceptable usage policy page, turning it off will remove the link in the footer.</p>
<p><span style="color:red;font-weight:bold;">Privacy Policy</span> &#8211; Here you can turn on/off the privacy policy page, turning it off will remove the link in the footer.</p>
<p><span style="color:red;font-weight:bold;">Live Chat</span> &#8211; Here you can easily disable/enable the live chat icons/links from the template.</p>
<p><span style="color:red;font-weight:bold;">Language Selector</span> &#8211; Here you can easily disable/enable the language switcher found at the bottom of the content area (useful if you only want to support one language).</p>
<h2>Search Engine Optimization</h2>
<p><span style="color:red;font-weight:bold;">SEO Feature</span> &#8211; By turning this on the template will load the page title, meta description &#038; meta tags set in this section. By turning it off these details will be loaded from /modules/addons/zomex_template_manager/lang/ (required to support multiple languages).</p>
<p><span style="color:red;font-weight:bold;">Page Title</span> &#8211; The page title you set for each page is the first thing Google see when they crawl your site. It&#8217;s also shown at the top of most browsers and on many occasions used for the listing of this page in Google. The page title is known as one of the most important aspects of on-page SEO so it&#8217;s wise to edit this specifically for your business.</p>
<p><span style="color:red;font-weight:bold;">Meta Description</span> &#8211; The meta description you set for each page found in the source code (not read by most visitors), it&#8217;s used specifically for search engines to understand the content/focus of the particular page of your website. Search engines sometimes use it as the description in their listings so it&#8217;s very important.</p>
<p><span style="color:red;font-weight:bold;">Meta Tags</span> &#8211; In the early days of the web search engines such as Google used the tags as a way of ranking a page. As it was easily abused it&#8217;s no longer used by Google for the ranking of a website but is known to be used for some of their other services and some search engines still use it.</p>
<h2>Social</h2>
<p><span style="color:red;font-weight:bold;">Social Buttons</span> &#8211; Turn on/off the Facebook &#038; Twitter buttons that show to the right of your company name.</p>
<p><span style="color:red;font-weight:bold;">Facebook Button/Icon</span> &#8211; Turn on/off the Facebook like button &#038; any Facebook icons on the template.</p>
<p><span style="color:red;font-weight:bold;">Facebook URL</span> &#8211; Here you can add your Facebook fan page (must be a fan page for the like button to function) which is automatically applied to the Facebook button &#038; any Facebook icons.</p>
<p><span style="color:red;font-weight:bold;">Twitter Button/Icon</span> &#8211; Turn on/off the Twitter follow button &#038; any Twitter icons on the template.</p>
<p><span style="color:red;font-weight:bold;">Twitter URL</span> &#8211; Here you can add your Twitter profile URL which is automatically applied to the Twitter button &#038; any Twitter icons.</p>
<h2>Advanced</h2>
<p><span style="color:red;font-weight:bold;">Custom CSS</span> &#8211; Here you can add custom CSS that&#8217;s automatically applied to all template pages. The great thing about using this is that it&#8217;s not lost when doing future template upgrades.</p>
<img src="http://www.zomex.com/lab/?ak_action=api_record_view&id=833&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.zomex.com/lab/tutorials/whmcs1/zomex-template-manager.php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WHMCS Themes &#8211; All about the social buttons</title>
		<link>http://www.zomex.com/lab/tutorials/whmcs1/whmcs-themes-social-buttons.php</link>
		<comments>http://www.zomex.com/lab/tutorials/whmcs1/whmcs-themes-social-buttons.php#comments</comments>
		<pubDate>Sun, 04 Mar 2012 19:50:35 +0000</pubDate>
		<dc:creator>Jack Curtis</dc:creator>
				<category><![CDATA[WHMCS]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[social integration]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[whmcs social]]></category>
		<category><![CDATA[whmcs templates]]></category>

		<guid isPermaLink="false">http://www.zomex.com/lab/?p=756</guid>
		<description><![CDATA[Since V3.3 all templates now come packed with the same social integration we use on Zomex.com in the form of a Facebook &#038; Twitter button. The great thing about these buttons is they allow your visitors to like your Facebook profile &#038; follow your Twitter account via a non-distracting popup. As you get more followers [...]]]></description>
			<content:encoded><![CDATA[<p>Since V3.3 all templates now come packed with the same social integration we use on Zomex.com in the form of a Facebook &#038; Twitter button. The great thing about these buttons is they allow your visitors to like your Facebook profile &#038; follow your Twitter account via a non-distracting popup. As you get more followers and likes your visitors will continue to become more confident in your products &#038; services making them a vital feature.</p>
<p>By default these buttons are located to the right of the company name as seen below:</p>
<div class="featureimage">
<img src="/libs/images/layout/whmcs-skins-social.jpg" alt="WHMCS templates social integration" /><br />
<span>A look at the social integration of each template.</span>
</div>
<p>You can find the settings for the buttons in the following file:</p>
<p><strong>/public_html/templates/YOUR_TEMPLATE/header.tpl</strong></p>
<div class="featureimage">
<img src="/libs/images/layout/whmcs-social-settings.jpg" alt="WHMCS templates social integration" /><br />
<span>A look at the button settings available.</span>
</div>
<p>As you can see above, you have a number of settings available to you:</p>
<p>Line 18 &#8211; here you can use 3 values, <strong>home</strong>, <strong>on</strong> or <strong>off</strong>. Home is the default and makes the buttons appear on the homepage only, on will make them appear on all pages and off will remove them from all pages.</p>
<p>Line 19 &#8211; on this line you can either turn the Facebook button <strong>on</strong> or <strong>off</strong></p>
<p>Line 20 &#8211; here you can define your Facebook page URL, by default it&#8217;s our profile to demo the functionality</p>
<p>Line 21 &#8211; on this line you can either turn the Twitter button <strong>on</strong> or <strong>off</strong></p>
<p>Line 22 &#8211; here you can define your Twitter profile URL, by default it&#8217;s our profile to demo the functionality</p>
<img src="http://www.zomex.com/lab/?ak_action=api_record_view&id=756&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.zomex.com/lab/tutorials/whmcs1/whmcs-themes-social-buttons.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

