* The website is the same http://www.festxxxxxxx.it in which we worked for months, you already have all the accesses.
** I send you some pictures ... thanks.
Any idea how to solve these problems. Thanks, greetings from Italy. René.


<div class="product-description">
<?php
// Product Description
if (!empty($this->product->product_s_desc)) :
?>
<p>
<?php echo nl2br($this->product->product_s_desc); ?>
</p>
<?php
endif; // Product Description END
$product = $this->product;
$position = 'normal';
$class = 'product-fields';
if (!empty($product->customfieldsSorted[$position])) {
?>
<?php foreach ($product->customfieldsSorted[$position] as $field) {
if ( $field->is_hidden ) //OSP http://forum.virtuemart.net/index.php?topic=99320.0
continue;
?>
<dl class="product-field product-field-type-<?php echo $field->field_type ?>">
<?php if ($field->custom_title != $custom_title and $field->show_title) : ?>
<dt><?php echo vmText::_ ($field->custom_title) ?></dt>
<?php endif; ?>
<?php if (!empty($field->display)) : ?>
<dd class="product-field-display"><?php echo $field->display ?></dd>
<?php endif; ?>
<?php if (!empty($field->custom_desc)) : ?>
<dd class="product-field-desc"><?php echo vmText::_($field->custom_desc) ?></dd>
<?php endif; ?>
</dl>
<?php
$custom_title = $field->custom_title;
} ?>
<?php
}
?>
<?php
// Ask a question about this product
if (VmConfig::get('ask_question', 0) == 1) :
$askquestion_url = JRoute::_('index.php?option=com_virtuemart&view=productdetails&task=askquestion&virtuemart_product_id=' . $this->product->virtuemart_product_id . '&virtuemart_category_id=' . $this->product->virtuemart_category_id . '&tmpl=component', FALSE);
?>
<p>
<a class="ask-a-question" href="<?php echo $askquestion_url ?>" rel="nofollow" ><?php echo vmText::_('COM_VIRTUEMART_PRODUCT_ENQUIRY_LBL') ?></a>
</p>
<?php endif; ?>
</div>