Salve a tutti
chiedo gentilmente se "qualcuno" ha qualche suggerimento
su come si potrebbe modificare il documento:
browse_listtable.tpl.php(
contenuto quì :component/com_virtuemart/themes/default/templates/browse/includes)
"responsabile" del layout "visivo" della "browsepage" (lista prodotti..)
nb: se in virtuemart avete impostato in "amministrazione" : "1 product per row"
come opzione di visualizzazione lista prodotti,
Trattasi di php sul quale ancora non ho molta "dimistichezza"
quello che vorrei fare è modificare la disposizione delle "caselle/celle"
e la forma di alcune (layout) , tipo la casella "nome prodotto" trasformarla
in orrizzontale estesa (anzichè verticale "storpiata")
e subito dopo una cella sempre orrizzontale contenente il prezzo, ...
grazie da ora ! il codice è questo :
// Creates a new HTML_Table object that will help us
// to build a table holding all the products
$table = new HTML_Table('width="100%"');
foreach( $products as $product ) {
foreach( $product as $attr => $val ) {
// Using this we make all the variables available in the template
// translated example: $this->set( 'product_name', $product_name );
$this->set( $attr, $val );
}
$data[$row][] = '<a href="'.$product['product_flypage'].'" title="'.$product['product_name'].'">'.$product['product_name'].'[/url]';
if( _SHOW_PRICES && $auth['show_prices'] ) {
$data[$row][] = $product['product_price'];
}
$data[$row][] = '<a href="'.$product['product_flypage'].'" title="'.$product['product_name'].'">'
. ps_product::image_tag( $product['product_thumb_image'] )
. '[/url]';
$data[$row][] = $product['product_s_desc'];
if( $product['has_addtocart'] ) {
$data[$row][] = $product['form_addtocart'];
}
else {
$data[$row][] = '<a href="'.$product['product_flypage'].'" title="'.$product['product_name'].'">'
. $product['product_details']
. '[/url]';
}
$row++;