After searching for a way to satisfy a request I've come across a near match with:
Manufacturer Images/Logos in mod_virtuemart_manufacturers
http://virtuemart.net/index.php?option=com_smf&Itemid=71&topic=25858.msg70556#msg70556This is a modification of the mod_virtuemart_manufacturers module which creates a linkable list of manufacturer images/logos. The link is to a browse page listing all products by that manufacturer (shop.browse&manufacturer_id=x). It operates using the manufacturer ID.
On my site I have home decor products categorized and sub-categorized as follows:
type (dinnerware, crystal, etc) ->
manufacturer (acme pottery, etc) ->
pattern (blue flowers, green flowers, etc) -> products (plates, bowls, etc)
Thus I have categories names = manufacturer names. The 2 strings are the same. Of course the category ID is not equal to the manufacturer ID of the same name (or else I wouldn't need help).
The modification I need:
have the manufacturer logo module link instead to the corresponding category browse page (shop.browse&category_id=x).
I'm not a php programmer but I can conceive that this might be possible if we can relate the manufacturer ID to the category ID by matching the Name strings.
Any takers?