hello,
our shop relaunch of J1.5 / VM 1.1 is online now .. www.marken-lederjacken.de (http://www.marken-lederjacken.de)
Hi,
just curious - how did you embed the brand images above each manufacturer's list view into the SuperMart template? Do you use by chance the "All-about-Manufactuers" extension for this?
for the images of category list or manufacture list or product list i use a simple custom module and nonumber sourcerer component.
example
$virtuemart_category_id = JRequest::getInt('virtuemart_category_id', false);
$virtuemart_product_id = JRequest::getInt('virtuemart_product_id', false);
$virtuemart_manufacturer_id = JRequest::getInt('virtuemart_manufacturer_id', false);
if ($virtuemart_manufacturer_id != "0")
{
$database->setQuery("SELECT mf_name FROM #__virtuemart_manufacturers_de_de WHERE virtuemart_manufacturer_id='$virtuemart_manufacturer_id'");
$mf_name = $database->loadResult();
echo "<img alt=\"$mf_name\" title=\"$mf_name\" src=\"images/shop/".$mf_name.".jpg\" width=\"px\" height=\"px\" style=\"\">";
}
Hi Love your site. Wanted to know what did you use to make the product page look so stylish and to hve the tabs along the bottom of the page with teh other information in them?
Jim