[SOLVED !!!]Problem with sidebar pushed underneath content
Posted: Tue Apr 07, 2009 2:30 pm
Hi guys,
I'm making a site using the 1.5.3 version of CMSMS. I have successfully installed the 0.2.1 version of ShopMS and 0.2.2 CartMS. Everything is working as it should be.
However, there's one problem when i am about to confirm the order my 'content' takes over and pushes the sidebar underneath it. This happens only on the confirmation page.
Here is some code.
{title}
{content}
{search lang="da_DK"}
{cms_module module='CartMadeSimple' template='tinybox' }
{cms_module module='ShopMadeSimple' lang="da_DK"}
I suppose the problems is in fe_orderconfirm , but am not sure. And I don't really know what to do.
Has anybody experience the same and know how to solve this problem out?
Thanks!
I'm making a site using the 1.5.3 version of CMSMS. I have successfully installed the 0.2.1 version of ShopMS and 0.2.2 CartMS. Everything is working as it should be.
However, there's one problem when i am about to confirm the order my 'content' takes over and pushes the sidebar underneath it. This happens only on the confirmation page.
Here is some code.
{title}
{content}
{search lang="da_DK"}
{cms_module module='CartMadeSimple' template='tinybox' }
{cms_module module='ShopMadeSimple' lang="da_DK"}
I suppose the problems is in fe_orderconfirm , but am not sure. And I don't really know what to do.
Code: Select all
{* Confirmation of the order *}
{$startform}
{$welcometitle}<br/>
{if $message}
<br/>{$message}<br/>
{/if}
<br/>
<div>{$shipto_label}<br/>
{$shiptoname}
{$shiptostreet}
{$shiptocity}
{$shiptostate}
{$shiptozip}
{$shiptocountry}
</div>
<br/>
<div class="totalnetweight">
{$label_total_weight}
</div>
<br/>
<div class="productlist">
<table>
<thead>
<tr>
<th>{$productqtytext}</th>
<th>{$productnametext}</th>
<th>{$productpricetext}</th>
<th>{$lineamounttext}</th>
</tr>
</thead>
<tbody>
{foreach from=$products item=entry}
<tr >
<td class="productqty">{$entry->myqty}</td>
<td class="productname">{$entry->name}</td>
<td class="productprice">{$entry->price}</td>
<td class="productamount">{$entry->lineamount}</td>
</tr>
{/foreach}
<tr >
<td > </td>
<td class="admincostname"><br>{$label_admin_amount}</td>
<td > </td>
<td class="productamount"><br>{$admin_amount}</td>
</tr>
{if $totalvat0amount}
<tr >
<td > </td>
<td class="vatname"><br>{$label_vat0_amount} %</td>
<td > </td>
<td class="productamount"><br>{$totalvat0amount}</td>
</tr>
{/if}
{if $totalvat1amount}
<tr >
<td > </td>
<td class="vatname"><br>{$label_vat1_amount} %</td>
<td > </td>
<td class="productamount"><br>{$totalvat1amount}</td>
</tr>
{/if}
{if $totalvat2amount}
<tr >
<td > </td>
<td class="vatname"><br>{$label_vat2_amount} %</td>
<td > </td>
<td class="productamount"><br>{$totalvat2amount}</td>
</tr>
{/if}
{if $totalvat3amount}
<tr >
<td > </td>
<td class="vatname"><br>{$label_vat3_amount} %</td>
<td > </td>
<td class="productamount"><br>{$totalvat3amount}</td>
</tr>
{/if}
{if $totalvat4amount}
<tr >
<td > </td>
<td class="vatname"><br>{$label_vat4_amount} %</td>
<td > </td>
<td class="productamount"><br>{$totalvat4amount}</td>
</tr>
{/if}
{if $deliveryprice <> 0}
<tr >
<td > </td>
<td ><br>{$deliveryvia}</td>
<td > </td>
<td class="productamount"><br>{$deliveryprice}</td>
</tr>
{/if}
<tr >
<td class="productqty"><br> </td>
<td class="productname">{$label_total_amount}</td>
<td class="productprice"> </td>
<td class="productamount">{$total_amount}</td>
</tr>
</tbody>
</table>
{if $deliveryprice == 0}
<div>{$deliveryvia_label}{$deliveryvia}</div>
<br/>
{/if}
<div>{$paymentvia_label}{$paymentvia}</div>
<br/>
{$hidden}{$confirm}{$cancel}<br/>
{$endform}
Has anybody experience the same and know how to solve this problem out?
Thanks!