
Originally Posted by
econcepts
What version of the mod are you using?
See if this link helps any:
http://www.zen-cart.com/forum/showthread.php?t=78554
This url is developed from that which your default store url is set to.
You can either make sure your default store url is set to leave that off, or if you are having no luck there you could open the following file :
admin/recover_cart_sales.php
and alter the link as needed around the lines 261-264 (this is where the link is set for the click.)
Thanks I am using version 3.1.0
In looking at lines 261-264 I noticed this:
PHP Code:
if( EMAIL_USE_HTML == 'true' )
$email .= '<a href="' . zen_catalog_href_link(FILENAME_DEFAULT) . '">' . STORE_OWNER . "\n" . zen_catalog_href_link(FILENAME_DEFAULT) . '</a>';
else
$email .= STORE_OWNER . "\n" . zen_catalog_href_link(FILENAME_DEFAULT);
Can I simply replace FILENAME_DEFAULT to HTTP_SERVER and have it just print the domain as url?
Also why all the references to zen_catalog_href_link when I believe Zen Cart has transition to zen_href_link?