Jump to content

Spidersiteme

Members
  • Posts

    93
  • Joined

  • Last visited

4 Followers

About Spidersiteme

  • Birthday 07/25/1989

Profile Information

  • Location
    USA, Irvine CA
  • Activity
    Developer

Recent Profile Visitors

5,447,034 profile views

Spidersiteme's Achievements

Newbie

Newbie (1/14)

16

Reputation

  1. I really like these guys https://pro-sitemaps.com/
  2. Try do this repleacing {$group_reduction} with {1-$group_reduction} in your product.tpl http://www.prestashop.com/forums/topic/320083-000-prices-problem-at-homepage-and-categories-page/page-2
  3. Hey everyone somthing really usfull and handy to speed up your site caching and compressing Just add the codes to your htacces file. also if you need help let me know Add to .htaccess: Header unset Pragma FileETag None Header unset ETag Cache-Control and Expires headers <FilesMatch "\.(ico|jpg|jpeg|png|gif|js|css|swf|pdf|flv|mp3)$"> <IfModule mod_expires.c> ExpiresActive on ExpiresDefault "access plus 14 days" Header set Cache-Control "public" </IfModule> </FilesMatch> <FilesMatch "\.(html|htm|xml|txt|xsl)$"> Header set Cache-Control "max-age=7200, must-revalidate" </FilesMatch> Add to .htaccess: Gzip compression with mod_deflate module <IfModule mod_mime.c> AddType application/x-javascript .js AddType text/css .css </IfModule> <IfModule mod_deflate.c> AddOutputFilterByType DEFLATE text/css application/x-javascript text/x-component text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon application/javascript <IfModule mod_setenvif.c> BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html </IfModule> <IfModule mod_headers.c> Header append Vary User-Agent env=!dont-vary </IfModule> </IfModule> What this code does it activate compression of all files except these files archives, images, multimedia files, etc. SetOutputFilter DEFLATE <IfModule mod_setenvif.c> SetEnvIfNoCase Request_URI \.(?:rar|zip)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:gif|jpg|png)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:avi|mov|mp4)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.mp3$ no-gzip dont-vary </IfModule> Sorce COde from howtounix.info
  4. authorizeaim.tpl Line 70 <select name="x_exp_date_y">{section name=date_y start=13 loop=20} ( this should set to start from 2013) change 11 to 13
  5. Hi Dh42, Thank you for the post, I just checked the one I have on the site for some reason is not using that JV,I just updated it. thank you guys
  6. It looks good I checked it to but you should really look at this module, this would help you a lot. http://addons.prestashop.com/en/checkout-modules/3503-abandoned-cart-reminder.html
  7. Hi Benjamin, That's what I thought to but for some reason is not. its using an out-dated Google Analytics snippet which is causing unnecessary delays to the content rendering ( Or maybe I'm using the older version of the module) Google Analytics asynchronously The newest version of the Google Analytics snippet uses asynchronous JavaScript.
  8. IS The latest version of the Analytics tracking code gonna be in the prestashop Google Analytics module. https://developers.google.com/analytics/devguides/collection/gajs/asyncTracking PS version 1.5.4.1 Google Analytics Module Version 1.4.3
  9. Hi Benjamin Yes Ben its a really easy fix, Ill be glad to help anyone that need more assistants.
  10. The problem as been fixed I just fixed julian walker Site .. You will need to add a www to the domain you can do this by putting in the. Htaccess file Redirect your_site.com to www.yoursite.com: RewriteEngine on (ONLY if it's not already there) RewriteCond %{HTTP_HOST} ^your_site.com RewriteRule ^(.*)$ http://www.yoursite.com/$1 [R=301,L] OR back office Preferences > SEO & URLs
  11. Hi Benjamin Utterback, IS not I just checked, I'm working on it now. Once I fix it Ill let you guys know and Instructions on how to fix it
×
×
  • Create New...