<?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>Agence de Développement Informatique du Nord &#187; Prestashop</title>
	<atom:link href="http://blog.adin.pro/tag/prestashop/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.adin.pro</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 26 Dec 2019 08:54:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1.1</generator>
	<item>
		<title>Use php into smarty templates</title>
		<link>http://blog.adin.pro/2013-05-09/use-php-into-smarty-templates/</link>
		<comments>http://blog.adin.pro/2013-05-09/use-php-into-smarty-templates/#comments</comments>
		<pubDate>Thu, 09 May 2013 13:13:57 +0000</pubDate>
		<dc:creator><![CDATA[blogadmin]]></dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Prestashop]]></category>
		<category><![CDATA[Smarty]]></category>
		<category><![CDATA[smarty]]></category>

		<guid isPermaLink="false">http://blog.adin.pro/?p=182</guid>
		<description><![CDATA[<p>You can easily execute php into smarty templates using the {php} tag : To access PHP variables in {php} blocks, you will need to use the PHP global keyword.</p>
<p>The post <a rel="nofollow" href="http://blog.adin.pro/2013-05-09/use-php-into-smarty-templates/">Use php into smarty templates</a> appeared first on <a rel="nofollow" href="http://blog.adin.pro">Agence de Développement Informatique du Nord</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>You can easily execute php into smarty templates using the {php} tag :</p>
<pre class="brush: php; title: ; notranslate">
{if $smarty.get.id_category|intval}
    {php}
         global $cookie;
         Configuration::get('PW_SORT_ENABLE');
    {/php}
{/if}
</pre>
<p>To access PHP variables in {php} blocks, you will need to use the PHP global keyword.</p>
<p>The post <a rel="nofollow" href="http://blog.adin.pro/2013-05-09/use-php-into-smarty-templates/">Use php into smarty templates</a> appeared first on <a rel="nofollow" href="http://blog.adin.pro">Agence de Développement Informatique du Nord</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adin.pro/2013-05-09/use-php-into-smarty-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prestashop disable smarty cache</title>
		<link>http://blog.adin.pro/2013-05-09/prestashop-disable-smarty-cache/</link>
		<comments>http://blog.adin.pro/2013-05-09/prestashop-disable-smarty-cache/#comments</comments>
		<pubDate>Thu, 09 May 2013 07:23:06 +0000</pubDate>
		<dc:creator><![CDATA[blogadmin]]></dc:creator>
				<category><![CDATA[Prestashop]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[smarty]]></category>

		<guid isPermaLink="false">http://blog.adin.pro/?p=178</guid>
		<description><![CDATA[<p>Smarty cache is great for server performance on production but is annoying on developpement. Hopefully, you can enable or disable it. On prestashop 1.3.x or less, you have to edit the root/config/smarty.config.php and edit these 2 lines On prestashop 1.4.x &#8230; <a href="http://blog.adin.pro/2013-05-09/prestashop-disable-smarty-cache/">Continue reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="http://blog.adin.pro/2013-05-09/prestashop-disable-smarty-cache/">Prestashop disable smarty cache</a> appeared first on <a rel="nofollow" href="http://blog.adin.pro">Agence de Développement Informatique du Nord</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Smarty cache is great for server performance on production but is annoying on developpement.<br />
Hopefully, you can enable or disable it.</p>
<p>On prestashop 1.3.x or less, you have to edit the root/config/smarty.config.php and edit these 2 lines</p>
<pre class="brush: php; title: ; notranslate">
$smarty-&gt;caching        = false;   // to pass &quot;true&quot; when put into production
$smarty-&gt;force_compile  = true;    // to pass &quot;false&quot; when put into production
</pre>
<p>On prestashop 1.4.x or more, you can do it directly on the backoffice, preference tab, performences subtab</p>
<p>The post <a rel="nofollow" href="http://blog.adin.pro/2013-05-09/prestashop-disable-smarty-cache/">Prestashop disable smarty cache</a> appeared first on <a rel="nofollow" href="http://blog.adin.pro">Agence de Développement Informatique du Nord</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adin.pro/2013-05-09/prestashop-disable-smarty-cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prestashop cron script</title>
		<link>http://blog.adin.pro/2013-05-08/prestashop-cron-script/</link>
		<comments>http://blog.adin.pro/2013-05-08/prestashop-cron-script/#comments</comments>
		<pubDate>Wed, 08 May 2013 13:23:44 +0000</pubDate>
		<dc:creator><![CDATA[blogadmin]]></dc:creator>
				<category><![CDATA[Prestashop]]></category>
		<category><![CDATA[crontab]]></category>

		<guid isPermaLink="false">http://blog.adin.pro/?p=174</guid>
		<description><![CDATA[<p>Sometimes you need to make a script usig the prestashop framework. To do that, just add these 2 lines at the top of your script</p>
<p>The post <a rel="nofollow" href="http://blog.adin.pro/2013-05-08/prestashop-cron-script/">Prestashop cron script</a> appeared first on <a rel="nofollow" href="http://blog.adin.pro">Agence de Développement Informatique du Nord</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Sometimes you need to make a script usig the prestashop framework. To do that, just add these 2 lines at the top of your script </p>
<pre class="brush: php; title: ; notranslate">
include(dirname(__FILE__).'/../../config/config.inc.php');
include_once(_PS_ROOT_DIR_.'/init.php');
</pre>
<p>The post <a rel="nofollow" href="http://blog.adin.pro/2013-05-08/prestashop-cron-script/">Prestashop cron script</a> appeared first on <a rel="nofollow" href="http://blog.adin.pro">Agence de Développement Informatique du Nord</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adin.pro/2013-05-08/prestashop-cron-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
