Template Umstellung von v2.3 auf v2.4

  • 1. Datensicherung!!!!! :)

    2. Die Ordner source und boxes sollten komplett getauscht werden, hier hat sich einiges geändert.
    3. Im Ordner html die Datei box.html neu übernehmen
    4. Datei index.html Anpassung von

    Code
    {include file="$[B]tpl_path[/B]/html/shop_nav.html"}

    auf

    Code
    {include file="$[B]html_tpl_path[/B]/shop_nav.html"}

    5. Anpassung der Einbindung von IMAGES
    betroffene Dateien:
    module/categorie_listing/categorie_listing.html

    statt:

    Code
    <img src="{$CATEGORIES_IMAGE}" alt="{$CATEGORIES_IMAGE_ALT}" title="{$CATEGORIES_IMAGE_TITLE}" {$CATEGORIES_IMAGE_DIMENSION} class="fl p_lr_5" />

    nur noch:

    Code
    {$CATEGORIES_IMAGE}

    So wird in folgenden Templates auf die gleiche Weise verfahren:

    module/product_listing/product_listings.html
    module/categories_list.html
    module/product_related_products_cat.html
    module/product_master_slave.html

    6. GANZ WICHTIG
    die \module\product_info\product_info_v1.html noch anpassen:

    für die Tabs muss folgendes ergänzt werden:

    statt:

    Code
    <li><a href="#desc">

    jetzt so schreiben:

    Code
    <li><a href="[B]{$BASE_PATH}[/B]#desc">

    Das für alle li in der ul von tabs bitte machen.

    Cache leeren NICHT VERGESSEN danach. Es sollte dann alles geprüft werden.

    <p>Wir geben nur Anregungen und Hilfestellung auf Basis unserer Erfahrung, keine Rechtshilfe!<br>\m/('_')\m/</p>

  • Sorry, scheitere schon an Punkt 4. Meine Index.html sieht So aus:

    {config_load file="lang/$language/lang_$language.conf" section="index"}
    <div id="page_container">
    <header>
    {index_html file='index_top.html' type=top}
    </header>

    {index_html file='index_left.html' type=left}
    {outerContainer}
    <article>
    {if $navtrail !=''}
    <div class="nav_pathway">
    {$navtrail}
    </div>
    {/if}
    <noscript>
    <div class="headerError border_radius_6">{#noscript#}</div>
    </noscript>

    {$main_content}
    </article>
    </div>
    {index_html file='index_right.html' type=right}
    <br class="clear" />

    </div>
    <footer class="copy fs85">
    <div class="footerbox">
    {index_html file='index_bottom.html' type=bottom}
    </div>
    {$copyright}
    </footer>
    {if $BANNER}<br />
    <div id="banner" class="ac">
    {$BANNER}
    </div>
    {/if}

  • Wie ist das mit den

    module/product_listing/product_listings.html
    module/categories_list.html
    module/product_related_products_cat.html
    module/product_master_slave.html

    da steht nix mit <img src="{$CATEGORIES_IMAGE}" alt="{$CATEGORIES_IMAGE_ALT}" title="{$CATEGORIES_IMAGE_TITLE}" {$CATEGORIES_IMAGE_DIMENSION} class="fl p_lr_5" />

    was muss denn z.b. auf der module/product_related_products_cat.html ersetzte werden?

  • Eigentlich müssen alle <img src=.... gegen die reine Bildvariable ersetzt werden. Also hier nur {$RELATED_CAT.pImage} usw.

    <p>Wir geben nur Anregungen und Hilfestellung auf Basis unserer Erfahrung, keine Rechtshilfe!<br>\m/('_')\m/</p>