Hello Rainer Thank you for this simple contribution! I did not wanted to install the way to big German Market add-on (as for the moment Switzerland fortunately is not requesting these EU stuff...) - so I tired yours and it is working perfectly. In my old store (2.2 MS) I had as well an additional link to the shipping page included. I tried a bit around and found that the coding is quite simple. So I cam up with this solution:
Starting at line 218 I added--> tep_href_ link('shipping.php')
$format_string .=
sprintf(MODULE_STORE_TAX_BELOW_PRICE_INCLUDING_TAX_AMOUNT, $products_tax, tep_href_link('shipping.php'), null);
} else {
$format_string .=
sprintf(MODULE_STORE_TAX_BELOW_PRICE_INCLUDING_TAX_TEXTONLY, tep_href_link('shipping.php'));
and in the language file I added <a href="%s">shipping</a>
define('MODULE_STORE_TAX_BELOW_PRICE_INCLUDING_TAX_TEXTONLY', 'VAT incl. + <a href="%s">shipping</a>');/***!--- Put here the text to display when Display tax amount? = false--***/
define('MODULE_STORE_TAX_BELOW_PRICE_INCLUDING_TAX_AMOUNT', '%s%% VAT incl. + <a href="%s">shipping</a>');/***!--- Put here the text to display when Display tax amount? = true--***/
So I ended up with a clickable link which leads to the shipping & returns page.
Maybe there would even be an easier way, but I am just a beginner :-)
Regards - Felix