Hi,
I've installed the productmanager into my CMSMS. But I'm having some problems with adding an image field into my summary template.
I've been searching the forums for this but couldn't find anything.
I'll explain what I want with an example:
I have 4 things to add into my product manager and I want them next to eachother and with a clickable thumnail wich will link me to the details of my product.
If I want to define a field, i'm getting this error:
Fatal error: Call to undefined function products_GetTypesDroopdown() in /home/feelfrecom/domains/123feelfree.com/public_html/cms/modules/Products/Products.module.php on line 284
Thanks in advance,
Adding an image in the summary template of the Product Manager
-
- New Member
- Posts: 3
- Joined: Thu Jan 08, 2009 8:16 am
Adding an image in the summary template of the Product Manager
Last edited by WonderWally on Thu Jan 22, 2009 10:17 am, edited 1 time in total.
Re: Adding an image in the summary template of the Product Manager
There is a typo in Products.module.php on line 284 -- change:
products_GetTypesDroopdown()
- to -
products_GetTypesDropdown()
Notice the "droop" instead of "drop" ?
Hope that helps!
products_GetTypesDroopdown()
- to -
products_GetTypesDropdown()
Notice the "droop" instead of "drop" ?

Hope that helps!
Re: Adding an image in the summary template of the Product Manager
Is a typo error on:
Products.module.php
go to line 284 and change:
return products_GetTypesDropdown($this,$id,$name,$selected,$addtext,$selectone);
for
return products_GetTypesDroopdown($this,$id,$name,$selected,$addtext,$selectone);
the diference is one "O" droop vs. drop
Products.module.php
go to line 284 and change:
return products_GetTypesDropdown($this,$id,$name,$selected,$addtext,$selectone);
for
return products_GetTypesDroopdown($this,$id,$name,$selected,$addtext,$selectone);
the diference is one "O" droop vs. drop