View Single Post
  #4  
Old 01-28-2011, 02:04 AM
  qualiteam's Avatar 
qualiteam qualiteam is offline
 

X-Guru
  
Join Date: Dec 2010
Posts: 6,373
 

Default Re: Changing breadcrumbs ...how can i change link-url of company

Insert this code into <xcart_dir>/smarty.php script:

PHP Code:
if (AREA_TYPE == "C") { 
        function 
replace_home_php_links($tpl_source, &$smarty
        { 
            global 
$xcart_web_dir

            return 
str_replace("\"home.php\"""\"$xcart_web_dir\""$tpl_source); 
        } 
        
$smarty->register_outputfilter("replace_home_php_links"); 


right before this code fragment:
PHP Code:
$smarty->config_dir $xcart_dir $smarty_skin_dir
__________________
Alex Solovev,
Qualiteam

---

User manual Video tutorials X-Cart FAQ

You are welcome to press "Thanks" button
if you find this post useful

Click here to learn how to apply patches

X-Cart Extensions

Last edited by qualiteam : 02-08-2011 at 04:59 AM.
Reply With Quote