<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>Comments on: How to create new homepage tabs in Prestashop 1.6</title>
	<atom:link href="http://nemops.com/prestashop-new-homepage-tabs/feed/" rel="self" type="application/rss+xml" />
	<link>http://nemops.com/prestashop-new-homepage-tabs/</link>
	<description>Prestashop Tutorials, Modules and More!</description>
	<lastBuildDate>Fri, 10 Mar 2023 23:25:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.35</generator>
	<item>
		<title>By: Boris</title>
		<link>http://nemops.com/prestashop-new-homepage-tabs/comment-page-1/#comment-46530</link>
		<dc:creator><![CDATA[Boris]]></dc:creator>
		<pubDate>Tue, 21 Feb 2017 12:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=2153#comment-46530</guid>
		<description><![CDATA[Hi Nemo,
I&#039;m trying to implement your code I hope I&#039;ll succeed
My question is after I create the tab how can I add products to be showed in the tab
I would like to add all the special products
Thank you in advance for your help!]]></description>
		<content:encoded><![CDATA[<p>Hi Nemo,<br />
I&#8217;m trying to implement your code I hope I&#8217;ll succeed<br />
My question is after I create the tab how can I add products to be showed in the tab<br />
I would like to add all the special products<br />
Thank you in advance for your help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan Novák</title>
		<link>http://nemops.com/prestashop-new-homepage-tabs/comment-page-1/#comment-46519</link>
		<dc:creator><![CDATA[Jan Novák]]></dc:creator>
		<pubDate>Sat, 11 Feb 2017 12:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=2153#comment-46519</guid>
		<description><![CDATA[Hello all

I follow this tutorial but module dont show in BO modules list. Have somebody this example in example in zip format?
Here is my code so if somebody can look to it and helpp me with this:

name = &#039;pshometabs&#039;;
        $this-&gt;tab = &#039;front_office_features&#039;;
        $this-&gt;version = &#039;1.0&#039;;
        $this-&gt;author = &#039;Nemo&#039;;
        $this-&gt;need_instance = 0;
 
        parent::__construct();
 
        $this-&gt;displayName = $this-&gt;l(&#039;PS new homepage tabs&#039;);
        $this-&gt;description = $this-&gt;l(&#039;Adds a new block to the homepage tabs.&#039;);
        $this-&gt;confirmUninstall = $this-&gt;l(&#039;Are you sure you want to delete this module?&#039;);
    }
     
    public function install()
    {
        if (!parent::install())
            return false;
        return true;
    }
	public function hookDisplayHomeTab($params)
{
    return $this-&gt;display(__FILE__, &#039;tab.tpl&#039;);
}
 
public function hookDisplayHomeTabContent($params)
{
    return $this-&gt;display(__FILE__, &#039;tab_content.tpl&#039;);
}
public function install()
{
    if (!parent::install() OR
        !$this-&gt;registerHook(&#039;displayHomeTab&#039;) OR
        !$this-&gt;registerHook(&#039;displayHomeTabContent&#039;))
        return false;
    return true;
}
     
}]]></description>
		<content:encoded><![CDATA[<p>Hello all</p>
<p>I follow this tutorial but module dont show in BO modules list. Have somebody this example in example in zip format?<br />
Here is my code so if somebody can look to it and helpp me with this:</p>
<p>name = &#8216;pshometabs';<br />
        $this-&gt;tab = &#8216;front_office_features';<br />
        $this-&gt;version = &#8216;1.0&#8217;;<br />
        $this-&gt;author = &#8216;Nemo';<br />
        $this-&gt;need_instance = 0;</p>
<p>        parent::__construct();</p>
<p>        $this-&gt;displayName = $this-&gt;l(&#8216;PS new homepage tabs&#8217;);<br />
        $this-&gt;description = $this-&gt;l(&#8216;Adds a new block to the homepage tabs.&#8217;);<br />
        $this-&gt;confirmUninstall = $this-&gt;l(&#8216;Are you sure you want to delete this module?&#8217;);<br />
    }</p>
<p>    public function install()<br />
    {<br />
        if (!parent::install())<br />
            return false;<br />
        return true;<br />
    }<br />
	public function hookDisplayHomeTab($params)<br />
{<br />
    return $this-&gt;display(__FILE__, &#8216;tab.tpl&#8217;);<br />
}</p>
<p>public function hookDisplayHomeTabContent($params)<br />
{<br />
    return $this-&gt;display(__FILE__, &#8216;tab_content.tpl&#8217;);<br />
}<br />
public function install()<br />
{<br />
    if (!parent::install() OR<br />
        !$this-&gt;registerHook(&#8216;displayHomeTab&#8217;) OR<br />
        !$this-&gt;registerHook(&#8216;displayHomeTabContent&#8217;))<br />
        return false;<br />
    return true;<br />
}</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alberto Salazar</title>
		<link>http://nemops.com/prestashop-new-homepage-tabs/comment-page-1/#comment-46237</link>
		<dc:creator><![CDATA[Alberto Salazar]]></dc:creator>
		<pubDate>Fri, 15 Jan 2016 23:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=2153#comment-46237</guid>
		<description><![CDATA[Hello , I have the same problem and I think I&#039;m missing codes etc , you kindly upload an example in zip format, or send email by alberto.reparo@gmail.com

thanks]]></description>
		<content:encoded><![CDATA[<p>Hello , I have the same problem and I think I&#8217;m missing codes etc , you kindly upload an example in zip format, or send email by <a href="mailto:alberto.reparo@gmail.com">alberto.reparo@gmail.com</a></p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JD Dishan</title>
		<link>http://nemops.com/prestashop-new-homepage-tabs/comment-page-1/#comment-46105</link>
		<dc:creator><![CDATA[JD Dishan]]></dc:creator>
		<pubDate>Mon, 07 Sep 2015 03:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=2153#comment-46105</guid>
		<description><![CDATA[hi I got errors on the front end; &quot;No template found for module pshometabs&quot; what is this help me]]></description>
		<content:encoded><![CDATA[<p>hi I got errors on the front end; &#8220;No template found for module pshometabs&#8221; what is this help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NotFromBrooklyn</title>
		<link>http://nemops.com/prestashop-new-homepage-tabs/comment-page-1/#comment-46040</link>
		<dc:creator><![CDATA[NotFromBrooklyn]]></dc:creator>
		<pubDate>Fri, 26 Jun 2015 12:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=2153#comment-46040</guid>
		<description><![CDATA[It would be nice if you explained how to add content to the new tab, just for us the total newbs of prestashop.]]></description>
		<content:encoded><![CDATA[<p>It would be nice if you explained how to add content to the new tab, just for us the total newbs of prestashop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sar</title>
		<link>http://nemops.com/prestashop-new-homepage-tabs/comment-page-1/#comment-45893</link>
		<dc:creator><![CDATA[sar]]></dc:creator>
		<pubDate>Mon, 02 Feb 2015 22:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=2153#comment-45893</guid>
		<description><![CDATA[Hi, I have successfully installed the module and create the tab. But I want a multiple tabs instead of only one. I can create 3 tabs but the content I am not sure how to do different content on each tab. Please help me.
Cheers]]></description>
		<content:encoded><![CDATA[<p>Hi, I have successfully installed the module and create the tab. But I want a multiple tabs instead of only one. I can create 3 tabs but the content I am not sure how to do different content on each tab. Please help me.<br />
Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NemoPS</title>
		<link>http://nemops.com/prestashop-new-homepage-tabs/comment-page-1/#comment-45786</link>
		<dc:creator><![CDATA[NemoPS]]></dc:creator>
		<pubDate>Mon, 03 Nov 2014 10:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=2153#comment-45786</guid>
		<description><![CDATA[For the position, try swapping them on the hookHomeTab hook (modules &gt; positions). As for the other question, the first one will be automatically selected  :)]]></description>
		<content:encoded><![CDATA[<p>For the position, try swapping them on the hookHomeTab hook (modules &gt; positions). As for the other question, the first one will be automatically selected  <img src="http://nemops.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kemosade</title>
		<link>http://nemops.com/prestashop-new-homepage-tabs/comment-page-1/#comment-45785</link>
		<dc:creator><![CDATA[Kemosade]]></dc:creator>
		<pubDate>Sat, 01 Nov 2014 01:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=2153#comment-45785</guid>
		<description><![CDATA[Great post , you win a staunch follower .I would like to swap the positions of new arrivals by Popular and that this  default load at startup. You can help me . Sorry for my bad English I&#039;m learning .]]></description>
		<content:encoded><![CDATA[<p>Great post , you win a staunch follower .I would like to swap the positions of new arrivals by Popular and that this  default load at startup. You can help me . Sorry for my bad English I&#8217;m learning .</p>
]]></content:encoded>
	</item>
</channel>
</rss>
