Afficher les Dimensions et poids du produit sur virtuemart

WRInaute discret
Bonjour en effet
j'utilse joomla + virtuemart pour boutique on-line

j'aimerai afficher les dimensions et poids du produit lors de la comande

exemple :
Nom Ref. Prix Unitaire Quantité Sous-total
Acer lcdplus22pouces2 €313.05 1 €313.05


j'aimerai que le script m'affiche :

Nom--Poids -- dimensions --- Ref. -- Prix Unitaire - Quantité - Sous-total

je ne sais pas cmment faire j'ai essayer de fouiller via l'administration de virtumart j'ai pas trouvé

voici la capture d'écran pour mieux comprendre

capture.jpg
 
A
Anonymous
Guest
Quelle version de vm ?
Il faut aller modifier le template (par défaut flypage.tpl).
Et appeler le poids et les dimensions par leur nom de variable.
 
WRInaute discret
merci pour ta réponse en effet j'utilise VirtueMart 1.1.2
peux tu me donné plus d'infos sur les fichiers a édité et les variables a mettre dans le fichier .tpl ...
Merci d'avance
 
A
Anonymous
Guest
il faut aller dans www/compoenents/virtuemart/themes
le flypage.tpl est dans product_details
il faut récupérer la valeur du poids, je ne sais plus s'il faut bidouiller la fonction de récupération des infos produits mais normalement non
 
WRInaute discret
Je viens de retouvé le fichier que tu ma indiqué je suis bloqué au niveau de la variable du poid ou vais je la recuperé ?
ta une idée ???
Merci beaucoup du temps que tu m'accorde
 
WRInaute discret
voici le contenue du fichier

<?php if( !defined( '_VALID_MOS' ) && !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' ); ?>

<?php echo $buttons_header // The PDF, Email and Print buttons ?>

<?php
if( $this->get_cfg( 'showPathway' )) {
echo "<div class=\"pathway\">$navigation_pathway</div>";
}
if( $this->get_cfg( 'product_navigation', 1 )) {
if( !empty( $previous_product )) {
echo '<a class="previous_page" href="'.$previous_product_url.'">'.shopMakeHtmlSafe($previous_product['product_name']).'</a>';
}
if( !empty( $next_product )) {
echo '<a class="next_page" href="'.$next_product_url.'">'.shopMakeHtmlSafe($next_product['product_name']).'</a>';
}
}
?>
<br style="clear:both;" />
<table border="0" style="width: 100%;">
<tbody>
<tr>
<?php if( $this->get_cfg('showManufacturerLink') ) { $rowspan = 5; } else { $rowspan = 4; } ?>
<td width="33%" rowspan="<?php echo $rowspan; ?>" valign="top" class="vm-product-img"><br/>
<?php echo $product_image ?><br/><br/><?php echo $this->vmlistAdditionalImages( $product_id, $images ) ?></td>
<td rowspan="1" colspan="2">
<h1><?php echo $product_name ?> <?php echo $edit_link ?></h1>
</td>
</tr>
<?php if( $this->get_cfg('showManufacturerLink')) { ?>
<tr>
<td rowspan="1" colspan="2"><?php echo $manufacturer_link ?><br /></td>
</tr>
<?php } ?>
<tr>
<td width="33%" valign="top" align="left">
<?php echo $product_price_lbl ?>
<?php echo $product_price ?><br /></td>
<td valign="top"><?php echo $product_packaging ?><br /></td>
</tr>
<tr>
<td colspan="2"><?php echo $ask_seller ?></td>
</tr>
<tr>
<td rowspan="1" colspan="2"><hr />
<?php echo $product_description ?><br/>
<span style="font-style: italic;"><?php echo $file_list ?></span>
</td>
</tr>
<tr>
<td><?php
if( $this->get_cfg( 'showAvailability' )) {
echo $product_availability;
}
?><br />
</td>
<td colspan="2"><br /><?php echo $addtocart ?></td>
</tr>
<tr>
<td colspan="3"><?php echo $product_type ?></td>
</tr>
<tr>
<td colspan="3"><hr /><?php echo $product_reviews ?></td>
</tr>
<tr>
<td colspan="3"><?php echo $product_reviewform ?><br /></td>
</tr>
<tr>
<td colspan="3"><?php echo $related_products ?><br />
</td>
</tr>
<?php if( $this->get_cfg('showVendorLink')) { ?>
<tr>
<td colspan="3"><div style="text-align: center;"><?php echo $vendor_link ?><br /></div><br /></td>
</tr>
<?php } ?>
</tbody>
</table>
<?php
if( !empty( $recent_products )) { ?>
<div class="vmRecent">
<?php echo $recent_products; ?>
</div>
<?php
}
if( !empty( $navigation_childlist )) { ?>
<?php echo $VM_LANG->_('PHPSHOP_MORE_CATEGORIES') ?><br />
<?php echo $navigation_childlist ?><br style="clear:both"/>
<?php
} ?>
 
Discussions similaires
Haut