Hallo zusammen, ich würde gerne in der Preisbox auf der Artikeldetailseite die Hersteller Info Box hinzufügen. Ich habe diese zwar mittlerweile hineinbekommen aber diese wird nicht mit Daten gefüllt. Ich habe in die Datei product_info_product_box_bottom folgenden Code hinzugefügt. Code: {load_language_text section="box_manufacturers_info"} {block name="box_manufacturers_info"} {block name="box_manufacturers_info_top"} {include file="get_usermod:{$tpl_path}layout_box_top.html" class="manufacturers_info" headline=$txt.heading_manufacturers_info} {/block} {block name="box_manufacturers_info_content"} {block name="box_manufacturers_info_image_if"} {if $content_data.IMAGE && file_exists($content_data.IMAGE)} {block name="box_manufacturers_info_image"} <img src="{$content_data.IMAGE}" alt="{$content_data.NAME}" class="img-responsive center-block" /> {/block} {/if} {/block} {block name="box_manufacturers_info_name"} {$content_data.NAME} <br /> {/block} {block name="box_manufacturers_info_url_if"} {if $content_data.URL} {block name="box_manufacturers_info_url"} <a href="{$content_data.LINK_URL}" onclick="window.open(this.href); return false;">{$content_data.LINK_TEXT}</a> <br /> {/block} {/if} {/block} {block name="box_manufacturers_info_link_more"} <a href="{$content_data.LINK_MORE_URL}">{$content_data.LINK_MORE_TEXT}</a> {/block} {/block} {block name="box_manufacturers_info_bottom"} {include file="get_usermod:{$tpl_path}layout_box_bottom.html"} {/block} {/block} Vielleicht könnte mir jemand einen Tip geben warum die Daten hier nicht übernommen werden. Vielen Dank Manuel