To have Sellers Store in showlistings we need to add this code:
PHP Code:
{* user store display *}
{if $storeTitle<>"" || $storeDescription<>"" || $storeImage<>""}
{if $storeImage<>""}
<div align="center"><img src="photos/{$storeImage}" alt="{$storeTitle}" /></div><br />
{else}
<h3>{$storeTitle}</h3>
{/if}
<table width="80%" align="center">
<tr>
<td>{$storeDescription}</td>
</tr>
</table>
{/if}
{* end user store display *}
what code do I need to write to show the store under member details, I will appreciate your help, thanks.