Quote Originally Posted by nagelkruid View Post
btw. now that you are looking at languages anyway :)
when i am going to the specials i can see it gets resolved to winkel/specials but that page is actually named winkel/aanbiedingen
that is probably very close to what you are looking at right now?

another thing i see is when i look in who's online i see alot of people browsing these lovely url's of which i now know where they are but i also noticed a lot of those get ammended the favicon.ico behind it. like so: /shop/category-c-1_10/favicon.ico
if i click on the link i simply get the correct page, not sure if this is only who's online page prob? (pretty sure didn't see those before the mod)
For favicon, just go into includes/templates/your_template/common/html_header.php

Starting from around line 34 you will see:

PHP Code:
<?php if (defined('FAVICON')) { ?>
<link rel="icon" href="<?php echo FAVICON?>" type="image/x-icon" />
<link rel="shortcut icon" href="<?php echo FAVICON?>" type="image/x-icon" />
<?php //endif FAVICON ?>

<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER DIR_WS_HTTPS_CATALOG HTTP_SERVER DIR_WS_CATALOG ); ?>" />
Replace that by:
PHP Code:
<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER DIR_WS_HTTPS_CATALOG HTTP_SERVER DIR_WS_CATALOG ); ?>" />

<?php if (defined('FAVICON')) { ?>
<link rel="icon" href="<?php echo FAVICON?>" type="image/x-icon" />
<link rel="shortcut icon" href="<?php echo FAVICON?>" type="image/x-icon" />
<?php //endif FAVICON ?>
You can see that we simple switch the location of the 2 parts.