problem displaying images of color and font selector in categories pages.

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

Profile photo of JA Developer 0.00 $tone June 12, 2009
Public

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;
    } 



#1
Profile photo of JA Developer 0.00 $tone June 17, 2009
Public

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$strpos 1);            
        }
        return 
$_baseURL



#4

This question is now closed

Written By

Comments