#1 (permalink)  
Alt 17.08.2004, 11:13
 
Registriert seit: 21.07.2004
Beiträge: 7
Unglücklich

gibt es ein addon, kleinen hack o.?. welches die mehrspaltige artikelanzeige unterst?tzt?
es gab sowas mal bei oscommerce da f?hrt man die anzahl der spalten zur artikelanzeige mit und kann die jederzeit ?ndern. das scheint mir aber nicht sinnvoll weil es nicht m?glich ist mehr als 3 spalten lesbar darzustellen.

wer hilft ein bisschen ? :wall:
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #2 (permalink)  
Alt 17.08.2004, 11:15
HHGAG
Gast
 
Beiträge: n/a
Standard

Das kannst Du alles im Template machen. Guck es Dir bei der categories_listing an
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #3 (permalink)  
Alt 17.08.2004, 11:25
 
Registriert seit: 21.07.2004
Beiträge: 7
Ausrufezeichen

aber: ich steh ein wenig auf der leitung ... was meinst du was ich da sehe? eine schleife in der artikel ausgelsen und in eine tabelle einspaltig untereinander angezeigt werden.. wenn ich zwei spalten will muss eine zweite schleife erstellt werden oder was meinst du? also nicht boese sein aber wenn s sowas schon gibt ists halt einfacher das einzubauen als stundenlang rumzuwurschteln. wenns was kostet zahl ichs auch...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #4 (permalink)  
Alt 17.08.2004, 11:43
HHGAG
Gast
 
Beiträge: n/a
Standard

Guck es Dir doch in der categories_listing an.
Die if Schleife mit col......
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #5 (permalink)  
Alt 17.08.2004, 16:58
 
Registriert seit: 21.07.2004
Beiträge: 7
Standard

ok. danke. hat funktioniert.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #6 (permalink)  
Alt 04.02.2008, 17:46
Neuer Benutzer
 
Registriert seit: 31.01.2008
Beiträge: 1
Frage Zwei Spalten Problem nur im IE

Hallo ich habe das Template wie auf http://www.self-commerce.de/viewtopi...117&highlight=
verändert..
Opera und Firefox zeigen schöön zweispaltig an.
der einzige der Faxen macht is t der IE?

Code:
{config_load file="$language/lang_$language.conf" section="index"}<table width="100%" border="0" cellspacing="0" cellpadding="0">  <tr valign="top">    <td class="contentsTopics">{$CATEGORIES_NAME}</td>    <td align="right">&nbsp;</td>  </tr>  <tr valign="top">    <td class="contentsTopics">{$CATEGORIES_HEADING_TITLE}</td>    <td align="right">&nbsp;</td>  </tr>  </table>{if $CATEGORIES_DESCRIPTION}<br />{$CATEGORIES_DESCRIPTION}{/if}<br />{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}" alt="{$CATEGORIES_NAME}" /><br /><table width="100%"  border="0" cellspacing="0" cellpadding="0">  <tr>    <td style="border-bottom: 1px solid; border-color: #000000;">&nbsp;</td>  </tr></table>{/if}{if $MANUFACTURER_DROPDOWN}<br /><table width="100%" border="0" cellspacing="0" cellpadding="0">  <tr>    <td class="main" align="right"><table border="0" cellspacing="0" cellpadding="0">      <tr>        <td class="main" align="right">{#text_show#}&nbsp;</td>        <td class="main" align="right">{$MANUFACTURER_DROPDOWN}</td>      </tr>    </table>      </td>  </tr></table><br />{/if}<table width="100%" border="0" cellspacing="0" cellpadding="0">  <tr>     <td align="center">        


 <table width="125" border="0" cellpadding="0" cellspacing="0" style="border-top: 2px solid; border-color: #d4d4d4;">          <tr>
  {foreach name=aussen item=module_data from=$module_content}
  {php} $col++;
  {/php} <td width="125" valign="top" rowspan="2">
            {if $module_data.PRODUCTS_IMAGE!=''}<a href="{$module_data.PRODUCTS_LINK}"><img src="{$module_data.PRODUCTS_IMAGE}" alt="{$module_data.PRODUCTS_NAME}" /></a>{/if}
            <p><strong>{$module_data.PRODUCTS_PRICE} </strong>{$module_data.BUTTON_BUY_NOW}<a href="{$module_data.PRODUCTS_LINK}"><img src="{$tpl_path}buttons/german/details.gif" alt="Details" border="0" /></a>
            </p></td>            
        
</tr>         
 <tr>                      
  <td align="left" class="main">
  
  <table width="100%" border="0" cellpadding="0" cellspacing="0" >          
        <tr>                  
        <td align="left"><table width="20" border="0">  <!-- width defines the distance between the pictures -->  
                  <tr>                     
                   <td align="left">{if $module_data.SHIPPING_NAME} 
                    <table width="20" border="0" cellpadding="0" cellspacing="0">          
                                      <tr valign="middle">
                                                                    <td class="main">{#text_shippingtime#}</td> 
                                                                                                 {if $module_data.SHIPPING_IMAGE}                              <td><img src="{$module_data.SHIPPING_IMAGE}" alt="{$module_data.SHIPPING_NAME}" /></td>                              {/if}                              <td class="main">{$module_data.SHIPPING_NAME}</td>                            </tr>                          </table>                          {/if}                          </td>                    
</tr>                  </table></td>                </tr>            </table>            </td>          {php}
  if ($col>=2) {
  $col=0;
  echo '</tr><tr>';
  }
  {/php}
  {/foreach}
</tr>        </table>    </td>  </tr></table><br />

<table width="100%" border="0" cellspacing="0" cellpadding="0">  <tr>    <td>{$NAVIGATION}</td>  </tr></table>

Hat jemand ein Idee? Vielen Dank für die Hilfe
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #7 (permalink)  
Alt 13.02.2008, 10:20
Neuer Benutzer
 
Registriert seit: 12.05.2006
Beiträge: 9
Standard Ich habe es so gelöst:

Artikelübersicht dreispaltig

PHP-Code:
{config_load file="$language/lang_$language.conf" section="index"}
<
table width="100%" border="0" cellspacing="0" cellpadding="0">
  <
tr valign="top">
    <
td class="contentsTopics">{$CATEGORIES_NAME}</td>
    <
td align="right">&nbsp;</td>
  </
tr>
  <
tr valign="top">
    <
td class="contentsTopics">{$CATEGORIES_HEADING_TITLE}</td>
    <
td align="right">&nbsp;</td>
  </
tr>
  
</
table>
{if 
$CATEGORIES_DESCRIPTION}<br />
{
$CATEGORIES_DESCRIPTION}{/if}<br />{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}alt="{$CATEGORIES_NAME}/>
<
br />
<
table width="100%"  border="0" cellspacing="0" cellpadding="0">
  <
tr>
    <
td style="border-bottom: 1px solid; border-color: #000000;">&nbsp;</td>
  </
tr>
</
table>
{/if}
{if 
$MANUFACTURER_DROPDOWN}<br />
<
table width="100%" border="0" cellspacing="0" cellpadding="0">
  <
tr>
    <
td class="main" align="right"><table border="0" cellspacing="0" cellpadding="0">
      <
tr>
        <
td class="main" align="right">{#text_show#}&nbsp;</td>
        
<td class="main" align="right">{$MANUFACTURER_DROPDOWN}</td>
      </
tr>
    </
table>      </td>
  </
tr>
</
table>
<
br />
{/if}
      <
table style="border-top: 2px solid; border-color: #d4d4d4;" width="100%" border="0" cellspacing="0" cellpadding="0">
        <
tr> {foreach name=aussen item=module_data from=$module_content
        {
php
          
$col++; 
        {/
php
          <
td class="main"><table  width="100%" border="0" cellpadding="0" cellspacing="4">
                <
tr
                  <
td align="center" ><a href="{$module_data.PRODUCTS_LINK}"><strong>{$module_data.PRODUCTS_NAME}</strong></a></td>
                </
tr>
                <
tr
                  <
td align="center" >{if $module_data.PRODUCTS_IMAGE!=''}<a href="{$module_data.PRODUCTS_LINK}"><img src="{$module_data.PRODUCTS_IMAGE}alt="{$module_data.PRODUCTS_NAME}/></a>{/if}
            {if 
$module_data.PRODUCTS_FSK18=='true'}<br /><img src="{$tpl_path}img/fsk18.gif" alt="" />{/if}</td>
                </
tr>
                <
tr>
                  <
td align="center" >{$module_data.PRODUCTS_SHORT_DESCRIPTION
            <
br />
            <
strong>{$module_data.PRODUCTS_PRICE} </strong><br />
                    {
$module_data.PRODUCTS_TAX_INFO}{$module_data.PRODUCTS_SHIPPING_LINK
            {if 
$module_data.PRODUCTS_VPE}<br />{$module_data.PRODUCTS_VPE}{/if}</td>
                </
tr>
                <
tr>
                      <
td align="right">{if $module_data.PRODUCTS_SHIPPING_NAME}
                          <
table width="200" border="0" cellpadding="0" cellspacing="0">
                            <
tr valign="middle">
                              <
td class="main">{#text_shippingtime#}</td>
                              
{if $module_data.PRODUCTS_SHIPPING_IMAGE}
                              <
td><img src="{$module_data.PRODUCTS_SHIPPING_IMAGE}alt="{$module_data.PRODUCTS_SHIPPING_NAME}/></td>
                              {/if}
                              <
td class="main">{$module_data.PRODUCTS_SHIPPING_NAME}</td>
                            </
tr>
                          </
table>
                          {/if} {
$module_data.PRODUCTS_BUTTON_BUY_NOW}</td>
                </
tr>
              </
table>
            </
td>
          {
php
          if (
$col>=3) { 
          
$col=0
          echo 
'</tr>
      </table> 
      <table style="border-top: 2px solid; border-color: #d4d4d4;" width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>'
;
           } 
          {/
php
         {/foreach} </
tr>
      </
table
<
p>&nbsp;</p>
<
table width="100%" border="0" cellspacing="0" cellpadding="0">
  <
tr>
    <
td>{$NAVIGATION}</td>
  </
tr>
</
table
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
Antwort

Lesezeichen

Stichworte
artikelanzeige

Themen-Optionen
Ansicht

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are aus
Pingbacks are aus
Refbacks are aus



Alle Zeitangaben in WEZ +1. Es ist jetzt 22:57 Uhr.

Copyright © 2011 xt:Commerce GmbH / xt:Commerce International Ltd. - All Rights Reserved

xt:Commerce is a SafeCharge brand