Images and other custom fields are not displayed automatically in listing and detail page. You must change the template.
The listing template is rows.html
And the detail page template is detail_link.html
You must add the following code format to display them
For example you have custom field, named mobile_phone. Then use the following code:Code:<%$custom_field_name%>
Code:<%$mobile_phone%>
There is special case for image custom field. To show the image, you must include <img> html code like below, for this example the custom field name is photo:
Code:<img src="<%$photo%>">


