Showing posts with label Prestashop. Show all posts
Showing posts with label Prestashop. Show all posts

2016/02/21

How to force prestashop see all css from theme and moduls running

Change
- /themes/.htaccess 
- /modules/.htaccess
from

<FilesMatch "\.tpl$">
Deny from all
</FilesMatch>

to

#<FilesMatch "\.tpl$">
#Deny from all
#</FilesMatch>


2014/07/15

Insert Google Analitics code to Prestashop

Be carefull. You should not have any strings in your smarty template like this:
"{x.."
, because it's reserved for smarty variable and Prestashop uses smarty templates Instead use this:
"{ x...".
F.g:
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-....', 'auto');
  ga('send', 'pageview');
</script>
->
<script>
  (function(i,s,o,g,r,a,m){ i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-....', 'auto');
  ga('send', 'pageview');
</script>