Tuesday, 28 April 2015

Prevent file caching with a .htaccess file

Avoid  file caching with a .htaccess file
<filesMatch "\.(html|htm|js|css)$">
  FileETag None
  <ifModule mod_headers.c>
     Header unset ETag
     Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
     Header set Pragma "no-cache"
     Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
  </ifModule>
</filesMatch>

Monday, 3 November 2014

How can I run two Skype accounts ?



In the Run window, enter the following command (include the quotes) and press OK:


"C:\Program Files\Skype\Phone\Skype.exe" /secondary


On Ubuntu Run this command on terminal:

skype --secondary

Thursday, 23 October 2014

Remove .php, .html, .htm extensions with .htaccess

 htaccess rewriting all .php files to .html


RewriteEngine on 
RewriteRule ^(.*)\.html $1\.php 

Friday, 19 September 2014

prestashop remove reviews from product page

prestashop remove reviews or product comments  from product page

Login to admin panel -> under module -> Product Comments-> Disable this module.

Tuesday, 16 September 2014

Prestashop Change Base Url

Change Prestashop Base Url

Edit the /config/settings.inc.php file and change
define('__PS_BASE_URI__', '/sub_folder_name/');
to
define('__PS_BASE_URI__', '/');
Log in to your BO and go to Preferences>SEO & URL's to adjust your shop accordinly.

Saturday, 13 September 2014

Prestashop – Global Variables

{$cms->id} = CMS Page's ID 
{$cms->position} = CMS Page's position 

Meta Variables

{$meta_keywords|escape:'htmlall':'UTF-8'} = meta keywords 
{$meta_description|escape:'htmlall':'UTF-8'} = meta description 
{$meta_title|escape:'htmlall':'UTF-8'} {$category->name|escape:'htmlall':'UTF-8'} = Category Name 
{$shop_name|escape:'htmlall':'UTF-8'} = Name of Shop code for page (doesn't work) 
{$cms_title.category_link} = ? {$cms_title.name} = Name of the CMS Category? 
{$cms_title.category_name} {$cms_page.link} = link to a CMS page 
{$cms_page.name|escape:html:'UTF-8'} = CMS page name

Prices

{if isset($product.reduction) && $product.reduction && isset($product.show_price) && $product.show_price && !$PS_CATALOG_MODE}<p class="presale_container">{convertPrice price=$product.price_without_reduction}</p>{/if}
http://www.prestashop.com/forums/topic/97933-display-original-price-on-sale-item-product-listtpl/

Images

{$logo_image_width}
{$logo_image_height}

Links and Directories

{$link->getPageLink('search.php')} = Page Link to specific page 
{$img_dir} = images directory in the theme 
{$img_ps_dir} = full directory from http://www to image directory 
{$base_dir} = base directory of site $tpl_dir./breadcrumb.tpl = name of template directory and name of template http://{$smarty.server.HTTP_HOST}
{$smarty.server.REQUEST_URI} = current url of page 
{$img_update_time} = image update time 
{$css_dir} = theme's css directory 
{$content_dir} = ? {$base_dir_ssl} 
 href="{$this_path_ssl}validation.php" title="{l s='Pay on your account. 30 Day Net Terms' mod='cashondelivery'}">  - use {$this_path_ssl} and mod='cashondelivery' to have Prestashop use the path to the module

Other Variables

{$product->id_category_default|escape:'htmlall':'UTF-8'} Default Category ID
01 $base_dir { root folder of your shop } 
02 $base_dir_ssl { root folder of your shop using HTTPS protocol } 
03 $content_dir { root folder of your shop depending on the SSL settings } 
04 $img_ps_dir { root folder containing images "/img/" } 
05 $img_dir { images folder in your current theme directory } 
06 $css_dir { css folder inside the current theme folder } 
07 $js_dir { JavaScript inside the theme folder } 
08 $tpl_dir { theme root folder } 
09 $modules_dir { modules root folder } 
10 $mail_dir { mail templates root folder } 
11 $lang_iso { current language ISO code } 
12 $come_from { previous page address [absolute] } 
13 $shop_name { your specified shop name } 
14 $cart_qties { total number of products in the cart } 
15 $cart { shopping cart contents } 
16 $currencies { pulls available currencies } 
17 $id_currency_cookie { selected currency id [cookie dependent] } 
18 $currency { active currency } 
19 $cookie { active cookie } 
20 $languages { grabs available languages } 
21 $logged { checks whether users is logged in } 
22 $page_name { current pages name } 
23 $customerName { customer name [session dependent] } 
24 $priceDisplay { current price display settings