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
Code:
              <!-- sidebar -->
              <aside>
              <xen:if is="{$topctrl}"><div class="topCtrl">{xen:raw $topctrl}</div></xen:if>
with
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>
 
Have found two more (depending on if you use grid or list index) that needed to be added. Updated replacement segment is
Code:
                <aside>
                <xen:if is="{$contentTemplate} != 'nflj_showcase_index_modular'">
                <xen:if is="{$contentTemplate} != 'nflj_showcase_index_grid'">
                <xen:if is="{$contentTemplate} != 'nflj_showcase_index_list'">
                <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>
                </xen:if>
                </xen:if>
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back