Jump to content
  • 0

Zapytanie SQL - indeksy atrybutów


hering

Question

Witam,

 

Jak na karcie produktu (FO) wyświetlić wszystkie indeksy (reference) odpowiadające atrybutom?

Standardowo wyświetlany jest indeks aktualnie zaznaczonego atrybutu (/themes/xxxxx/product.tpl):

 

<p id="product_reference" {if isset($groups) OR !$product->reference}style="display: none;"{/if}>
<label>{l s='Reference:'} </label>
<span class="editable">{$product->reference|escape:'htmlall':'UTF-8'}</span>
</p>

 

Innymi słowy potrzebuję z tabeli ps_product_attribute wyświetlić wszystkie dane z pola reference dla aktualnie wyświetlanego id_product (produktu) i id_lang (języka).

 

 

Siedzę już nad tym trzeci dzień (a było uczyć się php i sql zamiast modelowania 3D ;-(

 

 

Dziękuję za pomocną dłoń :-)

Edited by hering (see edit history)
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Rozwiązanie:

			<p id="product_reference">
			  <label>{l s='Reference:'}</label>
			  {assign var='zmienna' value=0}
			    {foreach from=$combinations key=idCombination item=combination}
			      {assign var='zmienna' value=$zmienna+1}
			      <div class="editable">
				{l s='- lenght'} 
				  {if $zmienna == $combinations|@count}
				    {$combination.reference}
				  {else}
				     {$combination.reference}
				  {/if}
				{l s='cm'}
			      </div>
			    {/foreach}
			</p>
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...