Hi, möchte in der Artikeldetailansicht statt den Hersteller unter der Artikelbeschreibung in einen seperaten Tab haben. Habe nun den Tab erstellt für den Hersteller, allerdings weiß ich nicht wie ich die Infos dort reinbekomme Hier meine Codes: Tabs.tpl [code]{block name=“frontend_detail_tabs”}
{block name=“frontend_detail_tabs_description”} - {se name=‘DetailTabsDescription’}{/se}
{/block} {block name=“frontend_detail_description_supplier”} - {se name=‘Hersteller’}{/se}
{/block} {block name=“frontend_detail_tabs_rating”} {if !{config name=VoteDisable}} - {s name=‘DetailTabsRating’}{/s} {if $sArticle.sVoteAverange.count} [{$sArticle.sVoteAverange.count}] {/if} {if $sArticle.sVoteAverange.count} Star Rating {/if}
{/if} {/block} {block name=“frontend_detail_tabs_related”} {if $sArticle.sRelatedArticles && !$sArticle.crossbundlelook} - {s name=‘DetailTabsAccessories’}Zubehör{/s} [{$sArticle.sRelatedArticles|@count}]
{/if} {/block}{/block}[/code] Hier meine index.tpl [code]{extends file=‘frontend/index/index.tpl’} {block name=‘frontend_index_header’} {include file=“frontend/detail/header.tpl”} {/block} {* Main content *} {block name=‘frontend_index_content’}
{* General detailbox *}
{* Images *} {include file=“frontend/detail/image.tpl”}
{* Detailbox middle *}
{* Article name *} {block name=‘frontend_detail_index_name’}
{$sArticle.articleName}
{/block} {* Supplier name *} {if $sArticle.supplierName} {block name=‘frontend_detail_index_supplier’} {se name=“DetailFrom”}{/se}: {$sArticle.supplierName} {/block} {/if} {* Caching article details for future use *} {if $sArticle.sBundles || $sArticle.sRelatedArticles && $sArticle.crossbundlelook || $sArticle.sVariants}
{include file=“frontend/detail/data.tpl” sArticle=$sArticle}
{/if} {* Caching variant article details *} {if $sArticle.sVariants} {foreach name=line from=$sArticle.sVariants item=sVariant}
{include file=“frontend/detail/data.tpl” sArticle=$sVariant}
{/foreach} {/if} {* Article data *}
{block name=‘frontend_detail_index_data’} {include file=“frontend/detail/data.tpl” sArticle=$sArticle sView=1} {/block}
{block name=‘frontend_detail_index_after_data’}{/block}
{* Configurator table *} {if $sArticle.sConfigurator && $sArticle.sConfiguratorSettings.type==2}
{/if} {* Detailbox right *} {* Configurator table // div buybox *} {if $sArticle.sConfigurator && $sArticle.sConfiguratorSettings.type==2}
{else}
{/if}
{* Article notification *} {block name=“frontend_detail_index_notification”} {if $sArticle.notification && ($sArticle.instock <= 0 || $sArticle.sVariants) && $ShowNotification} {include file=“frontend/plugins/notification/index.tpl”} {/if} {/block} {* Configurator drop down menu *} {block name=“frontend_detail_index_configurator”} {if $sArticle.sConfigurator} {if $sArticle.sConfiguratorSettings.type eq 1} {include file=“frontend/detail/config_step.tpl”} {elseif $sArticle.sConfiguratorSettings.type != 2} {include file=“frontend/detail/config_upprice.tpl”} {/if} {/if} {/block} {* Include buy button and quantity box *} {block name=“frontend_detail_index_buybox”} {include file=“frontend/detail/buy.tpl”} {/block} {* Additional links *} {block name=“frontend_detail_index_actions”} {include file=“frontend/detail/actions.tpl”} {/block}
{* Detailinfo *} {block name=“frontend_detail_index_detail”}
{* Bundle *} {block name=“frontend_detail_index_bundle”} {include file=‘frontend/detail/bundle/include.tpl’} {/block} {block name=“frontend_detail_index_tabs”} {* Tabs *}
{* Tabsnavigation *} {include file=“frontend/detail/tabs.tpl”}
{* Article description *} {block name=“frontend_detail_index_tabs_description”} {include file=“frontend/detail/description.tpl”} {/block} {* Supplier *} {block name=‘frontend_detail_description_supplier’} {if $sArticle.supplierDescription}
{se name=“DetailDescriptionSupplier”}{/se} “{$sArticle.supplierName}”
{$sArticle.supplierDescription} {/if} {/block} {* Supplier *} {block name=‘frontend_detail_description_supplier’} {if $sArticle.supplierDescription}
{se name=“DetailDescriptionSupplier”}{/se} “{$sArticle.supplierName}”
{$sArticle.supplierDescription} {/if} {/block} {* Article rating *} {if !{config name=VoteDisable}} {block name=“frontend_detail_index_tabs_rating”} {include file=“frontend/detail/comment.tpl”} {/block} {/if} {* Related articles *} {block name=“frontend_detail_index_tabs_related”} {include file=“frontend/detail/related.tpl”} {/block} {* Similar articles *} {include file=‘frontend/detail/similar.tpl’}
{* “Customers bought also” slider *} {block name=“frontend_detail_index_also_bought_slider”} {if {config name=alsoBoughtShow}} {action module=widgets controller=recommendation action=bought articleId=$sArticle.articleID} {/if} {/block} {* "Customers similar viewed slider *} {block name=“frontend_detail_index_similar_viewed_slider”} {if {config name=similarViewedShow}} {action module=widgets controller=recommendation action=viewed articleId=$sArticle.articleID} {/if} {/block} {/block}
{/block}
{/block}[/code] Und dieser Codeschnipsel dient zur Abfrage der Hersteller, habe es aus der discription.tpl genommne. [code] {* Supplier *} {block name=‘frontend_detail_description_supplier’} {if $sArticle.supplierDescription}
{se name=“DetailDescriptionSupplier”}{/se} “{$sArticle.supplierName}”
{$sArticle.supplierDescription} {/if} {/block}[/code] Wäre super wenn mir wer helfen könnte…