Index: uc_vat.install
===================================================================
RCS file: /cvs/drupal/contributions/modules/uc_vat/uc_vat.install,v
retrieving revision 1.2
diff -u -r1.2 uc_vat.install
--- uc_vat.install	10 Mar 2010 22:10:17 -0000	1.2
+++ uc_vat.install	16 Jun 2010 09:52:52 -0000
@@ -8,6 +8,7 @@
   variable_del('uc_vat_name');
   variable_del('uc_vat_suffix_tax');
   variable_del('uc_vat_suffix_shipping');
+  variable_del('uc_vat_suffix_shipping_link');
   variable_del('uc_vat_exclude_superuser');
   variable_del('uc_vat_list_price_inclusive');
   variable_del('uc_vat_cost_inclusive');
Index: uc_vat.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/uc_vat/uc_vat.module,v
retrieving revision 1.48
diff -u -r1.48 uc_vat.module
--- uc_vat.module	19 Mar 2010 06:12:18 -0000	1.48
+++ uc_vat.module	16 Jun 2010 09:52:52 -0000
@@ -561,7 +561,11 @@
       }
     }
     if (variable_get('uc_vat_suffix_shipping', FALSE) && $node->shippable) {
-      $options['suffixes'][] = '<span class="price-shipping-suffix"> '. t('excluding shipping costs') .'</span>';
+      if ($shipping_link = variable_get('uc_vat_suffix_shipping_link', '')) {
+        $options['suffixes'][] = '<span class="price-shipping-suffix"> '. t('excluding') . ' ' . l(t('shipping costs'), $shipping_link) .'</span>';
+      } else {
+        $options['suffixes'][] = '<span class="price-shipping-suffix"> '. t('excluding shipping costs') .'</span>';
+      }
     }
   }
 }
Index: uc_vat.admin.inc
===================================================================
RCS file: /cvs/drupal/contributions/modules/uc_vat/uc_vat.admin.inc,v
retrieving revision 1.5
diff -u -r1.5 uc_vat.admin.inc
--- uc_vat.admin.inc	10 Mar 2010 22:34:51 -0000	1.5
+++ uc_vat.admin.inc	16 Jun 2010 09:52:52 -0000
@@ -29,6 +29,13 @@
     '#title' => t('Add "excluding shipping costs" to shippable product prices.'),
     '#default_value' => variable_get('uc_vat_suffix_shipping', FALSE),
   );
+  $form['display']['uc_vat_suffix_shipping_link'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Optional link to shipping costs page'),
+    '#description' => t('If non-empty "exclude shipping costs" will be linked to this page.'),
+    '#default_value' => variable_get('uc_vat_suffix_shipping_link', ''),
+    '#size' => 20,
+  );
   $form['display']['uc_vat_exclude_superuser'] = array(
     '#type' => 'checkbox',
     '#title' => t('Show prices excluding !tax to the superuser.', array('!tax' => $tax)),
