ilario Posted December 17, 2022 Share Posted December 17, 2022 ciao mi sapreste dire quale file modificare vorrei aggiungere in $product.attributes oltre il nome del gruppo e il nome della variante, anche link/url dell'immagine variante (texture-color) grazie mille ilario Link to comment Share on other sites More sharing options...
ilario Posted December 19, 2022 Author Share Posted December 19, 2022 ho trovato dove viene creato la variabile nel file cart.php private const DEFAULT_ATTRIBUTES_KEYS = [ 'attributes' => '', 'attributes_small' => '', 'attributes_big' => '']; public static function cacheSomeAttributesLists($ipa_list, $id_lang) ............ nella select ho aggiunto Id-attribute il problema è nel array che si crea ho provato a fare una copia esatta del 'attributes' in 'attributes_big' (visto che c'era già una con small) in modo tale da non toccare l'originale , che magari viene usato in altri punti foreach ($result as $row) { $key = $row['id_product_attribute'] . '-' . $id_lang; self::$_attributesLists[$key]['attributes'] .= $row['public_group_name'] . $colon . $row['attribute_name'] . $separator . ' '; self::$_attributesLists[$key]['attributes_big'] .= $row['public_group_name'] . $colon . $row['attribute_name'] . $separator . ' '; self::$_attributesLists[$key]['attributes_small'] .= $row['attribute_name'] . $separator . ' '; } ma quando la richiamo nel file .tpl (anche qui stesso codice di 'attributes') {foreach from=$product.attributes key="attribute" item="value"} <div class="product-line-info"> <span class="label">{$attribute}:</span> <span class="value">{$value}</span> </div> {/foreach} {foreach from=$product.attributes_big key="attribute" item="value"} <div class="product-line-info"> <span class="label">{$attribute}:</span> <span class="value">{$value}</span> </div> {/foreach} me lo visualizza in modo differente il primo ovviamente corretto quello nuovo mi da 0: non capisco casa mi manchi da correggere, non trovo altri riferimenti grazie mille ilario Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now