#1 (permalink)  
Alt 19.02.2007, 19:34
Benutzer
 
Registriert seit: 02.02.2007
Beiträge: 33
Standard Gallerieansicht

wo kann ich einstellen wieviele produkte die gallerieansicht zeigen soll

ich will 3 produkte horizontal und 5 vertikal anzeigen lassen

wo kann man die gallerieansicht templatieren?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #2 (permalink)  
Alt 20.02.2007, 09:11
xt:C Sponsor
 
Registriert seit: 25.08.2006
Beiträge: 11
Ausrufezeichen

Also Horizontal machst du es in:

deintemplate/module/product_listing/_pruduct_listing_v1.html

such nach:
PHP-Code:
{php
if (
$col>=3) { 
$col=0
wobei die 3 die anzahl der Produkte bestimmt!

Die Vertikalen Bilder bestimmt man sicher durch die Menge der Produkte die auf einer Seite angezeigt werden sollen!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #3 (permalink)  
Alt 20.02.2007, 13:11
Benutzer
 
Registriert seit: 02.02.2007
Beiträge: 33
Standard

ist in meiner datei unter module/product-listing/_product_listing_v1.html

bzw product_listing_v1.html nicht vorhanden...

habe die neuste version von xtcommerce installiert!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #4 (permalink)  
Alt 20.02.2007, 16:40
xt:C Sponsor
 
Registriert seit: 25.08.2006
Beiträge: 11
Standard

Probiers mit der! Keine Grarantie (also Backup machen

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 width="100%" border="0" cellspacing="0" cellpadding="0">
  <
tr
    <
td align="center"
        <
table width="100%" border="0" cellpadding="0" cellspacing="0" style="border-top: 2px solid; border-color: #d4d4d4;">
          {foreach 
name=aussen item=module_data from=$module_content
          <
tr
            <
td rowspan="2" style="border-bottom: 1px solid; border-color: #cccccc;">&nbsp;{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>
            <
td align="left" class="main"><a href="{$module_data.PRODUCTS_LINK}"><strong>{$module_data.PRODUCTS_NAME}</strong></a></td>
          </
tr>
          <
tr
            
          <
td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">{$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} 
            <
table width="100%" border="0" cellpadding="0" cellspacing="0">
                <
tr>
                  <
td align="right"><table width="200" border="0">
                    <
tr>
                      <
td align="right">{if $module_data.SHIPPING_NAME}
                          <
table width="200" 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}
                          {
$module_data.PRODUCTS_BUTTON_BUY_NOW}</td>
                    </
tr>
                  </
table></td>
                </
tr>
            </
table>            </td>
        {
php
if (
$col>=3) { 
$col=0
echo 
'</tr><tr>';

{/
php
          {/foreach} 
      </
table>
    </
td>
  </
tr>
</
table>
<
br />
<
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
  #5 (permalink)  
Alt 21.02.2007, 18:41
Benutzer
 
Registriert seit: 02.02.2007
Beiträge: 33
Standard

hat leider nicht geklappt... ich muss mal nach nem ansatz suchen wie das gemacht werden kann...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #6 (permalink)  
Alt 22.02.2007, 13:56
Benutzer
 
Registriert seit: 02.02.2007
Beiträge: 33
Standard

hat nun funktioklappt
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
Antwort

Lesezeichen

Stichworte
gallerieansicht

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 04:51 Uhr.

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

xt:Commerce is a SafeCharge brand