1
Gestione e-commerce / Re:Prodotti correlati in colonna gestiti da default_customfields.php
« il: 29 Ott 2014, 16:28:30 »
Ho risolto reinstallando da capo il tutto e applicando la modifica suggeritami da mmleoni.
In ogni caso ora mi trovo i prodotti correlati ma voglio che su questi compaia anche il prezzo.
Come si fa?
Aggiungo che a me i prodotti correlati vengono gestiti da default_customfields con il seguente codice
In ogni caso ora mi trovo i prodotti correlati ma voglio che su questi compaia anche il prezzo.
Come si fa?
Aggiungo che a me i prodotti correlati vengono gestiti da default_customfields con il seguente codice
Citazione
<?php
/**
*
* Show the product details page
*
* @package VirtueMart
* @subpackage
* @author Max Milbers, Valerie Isaksen
* @link http://www.virtuemart.net
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: default_customfields.php 8036 2014-06-16 07:42:24Z Milbo $
*/
// Check to ensure this file is included in Joomla!
defined ( '_JEXEC' ) or die ( 'Restricted access' );
?>
<div class="product-fields">
<?php
$custom_title = null;
foreach ($this->product->customfieldsSorted[$this->position] as $field) {
if ( $field->is_hidden ) //OSP http://forum.virtuemart.net/index.php?topic=99320.0
continue;
//$field->row = $this->row;
if ($field->display) {
?><div class="product-field product-field-type-<?php echo $field->field_type ?>">
<?php if ($field->custom_title != $custom_title && $field->show_title) { ?>
<span class="product-fields-title" ><?php echo vmText::_($field->custom_title); ?></span>
<?php
if ($field->custom_tip)
echo JHtml::tooltip($field->custom_tip, vmText::_($field->custom_title), 'tooltip.png');
}
?>
<span class="product-field-display"><?php echo $field->display ?></span>
<span class="product-field-desc"><?php echo vmText::_($field->custom_desc) ?></span>
<>
<?php
$custom_title = $field->custom_title;
}
}
?>
<>