Jump to content

[RISOLTO] - CODICE DI RIFERIMENTO IN HOME 1.6


ludlogan

Recommended Posts

nel dettaglio del prodotto abbiamo il codice di riferimento .. ok

vorrei metterlo in homepage tra la foto e il nome prodotto di ogni prodotto nella lista.

 

sto provando a copiarlo da PRODUCT.TPL per metterlo in PRODUCT-LIST.TPL ma mi viene vuoto...

 

AIUTO RAGAZZI e GRAZIE A TUTTI IN ANTICIPO PER L'ATTENZIONE

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

prova ad aggiungere questo :
 

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

e anche questo dove ci sono le variabili  dentro al tag script per intenderci
var productReference = '{$product->reference|escape:'htmlall':'UTF-8'}';
Edited by giuliopowa (see edit history)
Link to comment
Share on other sites

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

</p>

L'ho messo in product-list.tpl

 

 

ma

var productReference = '{$product->reference|escape:'htmlall':'UTF-8'}';

dove lo devo mettere?

Link to comment
Share on other sites

appena dopo i commenti del file product-list.tpl prova a scrivere così ( non ho fatto una prova )

<script type="text/javascript"> 
var productReference = '{$product->reference|escape:'htmlall':'UTF-8'}';
</script>


se no prova a sostituire 

questo 
{$product->reference|escape:'htmlall':'UTF-8'}

con questo 
{$product.reference|escape:'htmlall':'UTF-8'}

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

oky ho fatto una prova ,

non mettere il tag script e neanche quello al suo interno ,

poi metti questo dove vuoi 
 

<p id="product_reference" {if isset($groups) OR !$product->reference}"{/if}>
<label for="product_reference">{l s='Reference:'} </label>
<span class="editable">{$product.reference|escape:'htmlall':'UTF-8'}</span>
</p>
  • Like 1
Link to comment
Share on other sites

  • 3 years later...

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...