VirtueMart Forum

VirtueMart General => Your Live Sites => Topic started by: mhuebler on June 19, 2014, 17:36:31 PM

Title: German Virtuemart Shop Ralaunch
Post by: mhuebler on June 19, 2014, 17:36:31 PM
hello,

our shop relaunch of J1.5 / VM 1.1 is online now .. www.marken-lederjacken.de (http://www.marken-lederjacken.de)
Title: Re: German Virtuemart Shop Ralaunch
Post by: jjk on June 27, 2014, 13:07:04 PM
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?
Title: Re: German Virtuemart Shop Ralaunch
Post by: mhuebler on July 01, 2014, 14:39:44 PM
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=\"\">";
}
Title: Re: German Virtuemart Shop Ralaunch
Post by: origomedia on March 21, 2015, 14:17:52 PM
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