Show Information block on: Product page / Information pages

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 年 前
Is there an easy way to place the information block on the Product page / Information pages?

I have been looking / trying, but haven't been succesfull yet.
11 年 前
change the file :
Views\Shared\_ColumnsTwo.cshtml

...
        @Html.Action("NewsletterBox", "Newsletter")
        <div class="clear">
        </div>
        @Html.Action("InfoBlock", "Common")
        <div class="clear">
        </div>

        @Html.Widget("left_side_column_after")
...

Shay
11 年 前
Ok resolved for products pages it was blocked by the:

@if (IsSectionDefined("left"))

The left section isnt defined in the product pages. So placing the info block outside of that if made it appear.
Changes where done in the _ColumnsTwo, still doesnt appear in the Topic pages.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.