hi all, i have a problem displaying images of color and font selector in categories pages.
my test site is up http://www.tricetrac.com if anyone can help me
thx
4 answers
Hi there,
I checked this issue with our template but could not find this issue.
Maybe it only displays in your site.
To solve this issue, please kindly try with my guider:
+ You ca change your issue with the link http://www.joomlart.com/forums/showthread.php?t=28785
+ If not, open app\design\frontend\default\jm_puritytemplate\pag e\includestemplatetools.php, at about line 206, find following code:
PHP Code:
function baseurl(){
return $this->getBaseURL();
}
and change to:
PHP Code:
function baseurl(){
$url = $this->getBaseURL();
$url = str_replace('index.php', '',$url);
return $url;
}
thx for reply
i tried it but it don’t work..
every time it insert the path /index.php/
any other idea?
Hi scantype
Could you please send me your ftp account via PM or submit a ticket. I will help you to solve it?
Hi
I fixed this issue.
This below is my way:
+ Open app/design/frontend/default/jm_purity/template/page/includes/templatetools.php, at about line 277, find following code:
PHP Code:
return $_baseURL;
and change to:
PHP Code:
if (strpos($_baseURL, 'index.php') > 0) {
$strpos = strpos($_baseURL, 'index.php');
$_baseURL = substr($_baseURL, 0 , $strpos - 1);
}
return $_baseURL;
This question is now closed