yaby:
i'm trying to do the same thing too, getting rid of the /shop part in the url. i found the file and copied it to my_template folder under english. but i have no idea how to edit it.. or i should say i have no idea what to change it to? anyone can point me in the right direction?
Yaby,
I'm taking a guess based on what I saw on your site. Your store is one level down (/shop as you said), so to have the email point to your main site you would do:
define('EMAIL_GV_CLOSURE','Sincerely,' . "\n\n" . STORE_OWNER . "\nStore Owner\n\n". '<a href="' . HTTP_SERVER . '/' . '">'.HTTP_SERVER . '/' ."</a>\n\n");
HTTP_SERVER is the uri to your main site (http://yourdomain.com)
DIR_WS_CATALOG is the path from there to your shop (/shop/).
In this case you would take out the catalog path and just add a trailing / (for proper syntax-you always end in a / or page name (html etc).
You can use any text editor (like notepad) to edit this.
-Ng_