Jump to content

Zdjęcia produktów w opisie


maniera

Recommended Posts

Zgadza się jest coś takiego tylko że chciałbym to zrobić, aby z automatu wszystkie zdjęcia się dodawały do opisu. Produkty ciągle się zmieniają 
za dużo pracy aby robić to jak mówisz, chciałem jakoś zedytować plik product.tpl czy też inny aby to poszło samo :)

Link to comment
Share on other sites

Spróbuj w ten sposób:
 

{if isset($images)}
	<div id="rte-img-block" class="clearfix">
	{foreach from=$images item=image name=thumbnails}
		{assign var=imageIds value="`$product->id`-`$image.id_image`"}
		{if !empty($image.legend)}
			{assign var=imageTitle value=$image.legend|escape:'html':'UTF-8'}
		{else}
			{assign var=imageTitle value=$product->name|escape:'html':'UTF-8'}
		{/if}
		<img class="img-responsive" src="{$link->getImageLink($product->link_rewrite, $imageIds, 'large_default')|escape:'html':'UTF-8'}" alt="{$imageTitle}" title="{$imageTitle}" itemprop="image" />
	{/foreach}
	</div>
{/if}

Dodaj ten kod do product.tpl w miejscu gdzie jest wyświetlany długi opis. Wymuś kompilacje szablonów / wyczyść cache,
(PS 1.6)

Edited by atomek (see edit history)
  • Thanks 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...