I am trying to develop my own client panel theme and need to display a list of servers that a client has.
I need this to be available on all pages. I am trying to make a menu dropdown where it will list all the services.
This is my attempt but it did not work. It only works when i load the products page.
{foreach from=$services item=service}
<li>
<a href="clientarea.php?action=productdetails&id={$service.id}">{$service.domain}</a>
</li>
{foreachelse}
<li>
<a href="#">none</a>
</li>
{/foreach}
It is searching for services but cannot find any and keeps displaying none. Why can't it find the client's services?
Also, how do i make this more specific? I would like to list only the client's shared hosting plans under shared hosting and same for their dedicated and VPS plans that they have.
Thanks in advance.