XF 2.2 sidebar on custom page

gouwepeer.nl

Well-known member
Licensed customer
I have a custom social page. I want to create a (right)sidebar on this page. I have try this:
HTML:
    <div class="p-body-sidebar">
        sidebar content
    </div>

The page where I want to create the sidebar:
Schermafdruk van 2023-12-02 21-00-47.webp
 
In your template you would want to use something like this...

HTML:
<xf:sidebar>
    <div class="block">
        <div class="block-container">
            <h3 class="block-minorHeader">
                Sidebar block title
            </h3>
            <div class="block-body block-row">
                sidebar code/content goes here
            </div>
        </div>
    </div>
</xf:sidebar>
 
Back
Top Bottom