BLOK

BLOK [Paid] 2.3.6.0.0

No permission to buy ($59.50)
ThemeHouse updated BLOK with a new update entry:

Version 2.3.3.0.1 Released

Changelog:
Resolved a Javascript error that could prevent AJAX content (such as notifications) loading in limited cases
Fix for occasional issue with conversation reply box not loading properly
Handful of minor bugfixes

Note: This release cannot be used on XenForo 2.2, it is exclusively for XenForo 2.3 only.
Note: This update does not require a UI.X add-on update to function properly.

Read the rest of this update entry...
 
ThemeHouse updated BLOK with a new update entry:

Version 2.3.3.0.2 Released

Changelog:
Handful of minor fixes related to icons not rendering
Removed swipe support for off-canvas nav style property
Expandable signature height sizing fix
Other minor tweaks & bugfixes

Note: This release cannot be used on XenForo 2.2, it is exclusively for XenForo 2.3 only.
Note: This update does not require a UI.X add-on update to function properly.

Read the rest of this update entry...
 
I just bought the theme and installed in on a forum of mine. There is a MAJOR SEO issue though, the main page, instead of showing the board name in the h1 tag shows "Forum List". Which has absolutely no value, especially since the forum I run is in Romanian. I have tried to tinker in the page_container, but cannot solve it. What code should I use instead of:

Code:
<xf:if contentcheck="true">
                                        <div class="p-title {{ $noH1 ? 'p-title--noH1' : '' }}">
                                            <xf:contentcheck>
                                                <xf:if is="!$noH1">
                                                    <h1 class="p-title-value">{$h1}</h1>                                           
                                                </xf:if>
                                            </xf:contentcheck>
                                        </div>
                                    </xf:if>
 
I just bought the theme and installed in on a forum of mine. There is a MAJOR SEO issue though, the main page, instead of showing the board name in the h1 tag shows "Forum List". Which has absolutely no value, especially since the forum I run is in Romanian. I have tried to tinker in the page_container, but cannot solve it. What code should I use instead of:

Code:
<xf:if contentcheck="true">
                                        <div class="p-title {{ $noH1 ? 'p-title--noH1' : '' }}">
                                            <xf:contentcheck>
                                                <xf:if is="!$noH1">
                                                    <h1 class="p-title-value">{$h1}</h1>                                          
                                                </xf:if>
                                            </xf:contentcheck>
                                        </div>
                                    </xf:if>

That's not a theme issue, but just what XF does for the forum list template in general (we try to keep core the core stuff consistent with XF to maintain compatibility with most addons & customization methods).

What you want to edit is the forum_list template itself; You'll see the line to change there for the H1.

You could also update the forum_list phrase instead if you'd rather change that.
 
Back
Top Bottom