Quote:
Originally Posted by cellswag
What about getting the product images to show up using the CDN in the root images folder T and P?
|
For the T thumbs, I followed the suggestion from
post #31
Then added the https code as follows:
I used this code for the Thumbs (trapping for https):
Code:
FILE:
/skin/common_files/product_thumbnail.tpl
FIND:
{$tmbn_url|amp}
REPLACE WITH:
{* MaxCDN edit - comment out next line *}
{* {$tmbn_url|amp} *}
{if $smarty.server.HTTPS ne "on"}
{$tmbn_url|amp|replace:'www.domain.com':'cdn.domain.com'}
{else}
{$tmbn_url|amp}
{/if}
{* END MaxCDN edit *}