Index: /mods/wpsg_mod_versandarten.class.php
===================================================================
--- /mods/wpsg_mod_versandarten.class.php	(revision 5946)
+++ /mods/wpsg_mod_versandarten.class.php	(revision 5949)
@@ -426,5 +426,14 @@
 			{
 				
-				$value = $basket['sum']['weight'];
+				$value = 0;
+				
+				foreach ((array)$basket['produkte'] as $p)
+				{
+					
+					$wpsg_product = wpsg_product::getInstance($this->shop->getProduktID($p['id']));
+					
+					if (!$wpsg_product->hasLimitedShipping() || in_array($this->id.'_'.$va['id'], $wpsg_product->getAllowedShipping())) $value += $p['weight'];
+					
+				}
 				
 			}
@@ -432,5 +441,14 @@
 			{
 				
-				$value = $basket['sum']['preis_gesamt'];
+				$value = 0;
+				
+				foreach ((array)$basket['produkte'] as $p)
+				{
+					
+					$wpsg_product = wpsg_product::getInstance($this->shop->getProduktID($p['id']));
+					
+					if (!$wpsg_product->hasLimitedShipping() || in_array($this->id.'_'.$va['id'], $wpsg_product->getAllowedShipping())) $value += $p['preis'] * $p['menge'];
+					
+				}
 				
 			}
