1. April Fools Day Sale starting today through Sunday April 2nd.
    $15 discount on all licenses. $10 discount on 1 year support/downloads extensions.
  2. 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

Discussion in 'Showcase Support' started by Malchishka, May 28, 2019.

  1. Malchishka

    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
     
  2. Bob

    Bob Developer Staff Member

    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>
     
    Malchishka likes this.
  3. Malchishka

    Malchishka New Member Showcase

    Yes, I spoke about it. Thank.
     
    Bob likes this.
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.