visto che sembra sia l'unico al mondo
a voler spostare i campi personalizzati dal basso verso l'alto...
...mi auto rispondo, magari a q1 viene la genialata...
...in pratica ho visto che ad un certo punto del file piu o meno alla riga 265 (piu o meno perchè ho fatto delle modifiche lievi al codice)
"/components/com_virtuemart/views/productdetails/tmpl/default.php" c'è questa porzione di testo:
if (!empty($this->product->customfieldsSorted['normal'])) {
$this->position = 'normal';
echo $this->loadTemplate('customfields');
} // Product custom_fields END
ho provato a spostare questa porzione vicino al campo del produttore (riga 244)ma non funziona...allora ho provato ad espandere la porzione da spostare<?php
} // Product Description END
if (!empty($this->product->customfieldsSorted['normal'])) {
$this->position = 'normal';
echo $this->loadTemplate('customfields');
} // Product custom_fields END
// Product Packaging
$product_packaging = '';
if ($this->product->packaging || $this->product->box) {
?>
<div class="product-packaging">
<?php
if ($this->product->packaging) {
$product_packaging .= JText::_('COM_VIRTUEMART_PRODUCT_PACKAGING1') . $this->product->packaging;
if ($this->product->box)
$product_packaging .= '
';
}
if ($this->product->box)
$product_packaging .= JText::_('COM_VIRTUEMART_PRODUCT_PACKAGING2') . $this->product->box;
echo str_replace("{unit}", $this->product->product_unit ? $this->product->product_unit : JText::_('COM_VIRTUEMART_PRODUCT_FORM_UNIT_DEFAUL T'), $product_packaging);
?>
<>
<?php } // Product Packaging END
?>
ma adirittura mi vengono fuori errori nella pagina php quando la deve caricare...
...davvero non so' dove sbattere la testa....
....ho visto anche che c'e un file "/components/com_virtuemart/views/productdetails/tmpl/
default_customfields.php" ma non riesco a capire se devo modificare quello (penso di no)
...q1 che ha messo mano al php c'e?
...ho bisogno di te!!