• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Resolved Information block

Malchishka

New Member
Showcase
Sorry for my English.

It is convenient to insert a SEO text into the information block, but it takes up too much space.
Is it possible to add the ability to place the information block at the very bottom?
1.JPG 2.JPG
 
That appears (but I am just guessing because your screen shot is too small to know if that is a category page or not) to be the "Category Content" block.

Are you talking about THESE options for a Category Page?

Selection_999(078).png

If so, you can edit the 'xa_sc_category_view' template and move the block of code below the items listing.

Find this block of code near the top of the template... (appx lines 37-50)

Code:
<xf:if is="$category.content_message != '' && $page == 1">
    <div class="block">
        <div class="block-container">
            <xf:if is="$category.content_title">
                <h3 class="block-header">{$category.content_title}</h3>
            </xf:if>
            <div class="block-body">
                <div class="block-row">
                    {$category.content_message|raw}
                </div>
            </div>
        </div>
    </div>
</xf:if>

Then move it near the end of the template, directly above where the sidenav code starts... (this is the first line of the side nav
Code:
<xf:page option="sideNavTitle">{{ phrase('categories') }}</xf:page>
 
Back
Top