News:

Looking for documentation? Take a look on our wiki

Main Menu

German Virtuemart Shop Ralaunch

Started by mhuebler, June 19, 2014, 17:36:31 PM

Previous topic - Next topic

jjk

#1
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?
Non-English Shops: Are your language files up to date?
http://virtuemart.net/community/translations

mhuebler

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=\"\">";
}

origomedia

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