Salve a tutti,
avrei bisogno del vostro supporto per trovare una soluzione da cui non ne sto uscendo fuori.

Ho installato:
- Joomla 2.5.7
- Virtuemart 2.0.10

Tutto bene!

Poi ho acquistato questo template!
Solo dopo mi sono accorto che il template va per Joomla 1.5, VirtueMart 1.1.9

Ora ho 2 opzioni:
- utilizzare Joomla 1.5 e Virtuemart 1.1.9
- cercare di adattare il template alle nuove versioni, ma come potete vedere da questo link ho qualche errore, il codice interessato è questo:

codice:
<?php 
	$tmp = new JConfig();
	$c1 = mysql_connect($tmp->host,$tmp->user,$tmp->password);
	mysql_select_db($tmp->db,$c1);
	$q=mysql_query ("select product_id, product_thumb_image, product_name from ".$tmp->dbprefix."vm_product order by product_id DESC" );
	$product = array ();
	while ($product []=mysql_fetch_assoc ($q));
?>
Grazie.