Tracy Perry
Customer
If you use Bobsters Showcase, you have probably found that you now have to "Create Entry" buttons. I tried the solution for the Better Blogs but never could get it to work.
The solution that I came up with is to edit PAGE_CONTAINER template and where the <aside> segment is replace
with
The solution that I came up with is to edit PAGE_CONTAINER template and where the <aside> segment is replace
Code:
<!-- sidebar -->
<aside>
<xen:if is="{$topctrl}"><div class="topCtrl">{xen:raw $topctrl}</div></xen:if>
Code:
<!-- sidebar -->
<aside>
<xen:if is="{$contentTemplate} != 'nflj_showcase_index_modular'">
<xen:if is="{$contentTemplate} != 'nflj_showcase_category_list'">
<xen:if is="{$contentTemplate} != 'nflj_showcase_member_list'">
<xen:if is="{$topctrl}"><div class="topCtrl">{xen:raw $topctrl}</div></xen:if>
</xen:if>
</xen:if>
</xen:if>