Index: /branches/version-2_4/data/class/pages/shopping/LC_Page_Shopping_Payment.php
===================================================================
--- /branches/version-2_4/data/class/pages/shopping/LC_Page_Shopping_Payment.php	(revision 18104)
+++ /branches/version-2_4/data/class/pages/shopping/LC_Page_Shopping_Payment.php	(revision 18155)
@@ -155,4 +155,6 @@
         // 支払い方法の取得
         $this->arrPayment = $this->lfGetPayment($total_pretax);
+        // 支払い方法の画像があるなしを取得（$img_show true:ある false:なし）
+        $this->img_show = $this->lfGetImgShow($this->arrPayment);
         // 配送時間の取得
         $arrRet = $objDb->sfGetDelivTime($this->objFormParam->getValue('payment_id'));
@@ -561,4 +563,16 @@
         return $this->objFormParam;
     }
+
+    /* 支払い方法の画像があるなしを取得（$img_show true:ある false:なし） */
+    function lfGetImgShow($arrPayment) {
+        $img_show = false;
+        foreach ($this->arrPayment as $payment) {
+            if (strlen($payment["payment_image"]) > 0 ){
+                $img_show = true;
+                break;
+            }
+        }
+        return $img_show;
+    }
 }
 ?>
Index: /branches/version-2_4/data/Smarty/templates/default/shopping/payment.tpl
===================================================================
--- /branches/version-2_4/data/Smarty/templates/default/shopping/payment.tpl	(revision 17789)
+++ /branches/version-2_4/data/Smarty/templates/default/shopping/payment.tpl	(revision 18155)
@@ -43,5 +43,5 @@
           <tr>
             <th>選択</th>
-            <th colspan="<!--{if $arrPayment[cnt].payment_image == ""}-->2<!--{else}-->3<!--{/if}-->">お支払方法</th>
+            <th colspan="<!--{if $img_show == false}-->2<!--{else}-->3<!--{/if}-->">お支払方法</th>
           </tr>
           <!--{section name=cnt loop=$arrPayment}-->
@@ -53,7 +53,9 @@
             </td>
             <!--{if $arrPayment[cnt].payment_image != ""}-->
-            <td>
-              <img src="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$arrPayment[cnt].payment_image}-->" />
-            </td>
+                <td>
+                    <img src="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$arrPayment[cnt].payment_image}-->" />
+                </td>
+            <!--{elseif $img_show == true}-->
+                <td></td>
             <!--{/if}-->
           </tr>
