Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Wichtig: Führen Sie das Skript vollständig aus, bis die Meldung "Update Erfolgreich" erscheint.


3. Update des Dateisystems:
Für das Dateiupdate wird die 4.1.10 Vollversion benötigt, diese finden Sie unter folgender URL:

http://wwwhelpdesk.xt-commerce.infocom/index.php?_m=downloads&_a=viewdownload&downloaditemid=284&nav=0,5/Knowledgebase/Article/View/1083/203/update-4100-auf-4110

Um das Dateisystem des Shop auf den neuesten Stand zu bringen, müssen Sie lediglich alle Shopdatein bis auf folgende Dateien uns Verzeichnisse mit den Dateien aus dem neuen Shoparchiv (4.1.10) überschreiben:

...

Code Block
languagehtml/xml
<div id="product-images">
    <div class="box">
        {if $products_image == 'product:noimage.gif'}
        <p class="product-image center"><img src="{$tpl_url_path}img/no_image.png"
                                             alt="{$products_name|escape:'html'}"/></p>
        {else}
        <p class="product-image">
            {if $diplayFancyCloud}
            <a href="{img img=$products_image type=m_org path_only=true}" class="cloud-zoom fancy-click-trigger"
               id="zoom" rel="fancy-gallery" data-cloudzoom="adjustX: 28, adjustY:-10, zoomWidth: 350">
                {img img=$products_image type=m_info alt=$products_name|escape:"html" width=auto height=auto
                itemprop=image}
            </a>
            {else}
            {img img=$products_image type=m_info alt=$products_name|escape:"html" width=auto height=auto itemprop=image}
            {/if}
        </p>
        {/if}
    </div>
    <!-- .box -->
    {if $more_images !=''}
    <div class="more-images">
        <p class="more-images-item">
            <span>
                <a href='{img img=$products_image type=m_org path_only=true}' rel="fancy-gallery"
                   class='cloud-zoom-gallery'
                   data-cloudzoom="useZoom: 'zoom', smallImage: '{img img=$products_image type=m_info path_only=false}'">
                    <img src="{img img=$products_image type=m_smallproduct alt=$products_name path_only=false}"
                         alt="{$products_name|escape:'html'}"/>
                </a>
            </span>
        </p>
        {foreach name=aussen item=img_data from=$more_images}
        <p class="more-images-item">
            <span>
                <a href='{img img=$img_data.file type=m_org path_only=true}' rel="fancy-gallery"
                   class='cloud-zoom-gallery'
                   data-cloudzoom="useZoom: 'zoom', smallImage: '{img img=$img_data.file type=m_info path_only=true}'">
                    <img src="{img img=$img_data.file type=m_smallproduct path_only=true}"
                         alt="{if $img_data.data.media_name == ''}{$products_name|escape:'html'}{else}{$img_data.data.media_name|escape:'html'}{/if}"/>
                </a>
            </span>
        </p>
        {/foreach}
    </div>
    <!-- .more-images -->
    {/if}
</div><!-- #product-images -->


2.
Siehe auch: http://www.xt-commerce.info/index.php?_m=downloads&_a=viewdownload&downloaditemid=153&nav=0,3,22

Suchen Sie:

Code Block
languagexml
<li><a href="javascript:void(0);" rel="#description"><span itemprop="description">{txt key=TEXT_PRODUCTS_DESCRIPTION}</span></a></li>

...