View Single Post
  #64  
Old 07-26-2013, 10:34 AM
 
carpeperdiem carpeperdiem is offline
 

X-Guru
  
Join Date: Jul 2006
Location: New York City, USA
Posts: 5,399
 

Default Re: NEW xcart template - xtreme Gear

Quote:
Originally Posted by albertchui
<link rel="stylesheet" type="text/css" href="http://www.iphonecasestudio.com/var/cache/xm_extra_style.css" />

That is a defect in the xMenus file:

/skin/common_files/modules/TXS_XMenus/include_css.tpl

FIND:
Code:
{if $xm_extra_css ne ''} <link rel="stylesheet" type="text/css" href="{$xm_extra_css}" /> {/if}

REPLACE WITH:
Code:
{if $xm_extra_css ne ''} {load_defer file="modules/TXS_XMenus/custom_css/xm_extra_style.css" type="css"} {/if}

TXS failed to include the xm_extra_style.css into the load_defer css

See what I changed?
{$xm_extra_css} variable is a hard coded link. Should not be used on secure pages.

HTH,
J
__________________
xcart 4.5.4 gold+ w/x-payments 1.0.6; xcart gold 4.4.4
Reply With Quote