xForobook Mobile [Paid] [Deleted]

I haven't seen that issue yet. Will check on an ipad and get back to you.
Users are advising that the little black "progress meter" in the top right corner stay there for a long while. They click the 'submit/post' again on their screens thinking it hasn't worked, resulting in the duplicate post.
 
Issue 1 on PC. Issue 2 on Mobile

Find in mobile.css template;

Code:
.searchboxfixed 
{
...

add this...

Code:
background-color: #414a5a;

It should be like this;

Code:
.searchboxfixed
{
    @property "searchboxfixed";
    color: @textCtrlBackground;
    background-color: #414a5a;
    padding: 6px;
    margin-left: 24px;
    border: 0px solid #222936;
    background: -webkit-linear-gradient(#414a5a, #4c5464);
    background: -webkit-gradient(linear, center top, center bottom, from(#414a5a), to(#4c5464));
    box-shadow: inset 0 1px 2px -1px rgba(0, 0, 0, .5), 0 1px 2px -1px rgba(255, 255, 255, .4);
    width: 210px;
    @property "/searchboxfixed";
}

It will solve your issue.
 
Thanks, will give that a try! Any solution for my other issue of ads not staying inside the sidebar? They show on the site still if the sidebar is closed.
 
Thanks, will give that a try! Any solution for my other issue of ads not staying inside the sidebar? They show on the site still if the sidebar is closed.

Did you try it normal image? I mean ads.png, ads.gif (custom ads) ads image. Not JS ads. Please try it custom ads without JS.
 
@Lemminator it's not the mobile style issue. I think xenMiG portal's sidebar doesn't work with a mobile device or there is another problem. I didn't try it with xenMiG portal yet.
 
Hm ok. The Widget Framework Works with your styl ? Because I have a teamspeak viewer implement with WF, but I don't see it also
 
How do we add more space in between the sticky and normal threads?

find in thread_list template;
Code:
        <xen:foreach loop="$stickyThreads" value="$thread">
            <xen:include template="thread_list_item" />
        </xen:foreach>

add below:

Code:
        <xen:if is="{$stickyThreads}">
            <li class="sectionFooter">{xen:phrase normal_threads}</li>
        </xen:if>

Save.

Now go to Appearance -> Phrases -> +Create New Phrase ->

Title: normal_threads
Phrase Text: Normal Threads

Save and done.

Guys please note new version will release after XenForo 1.5 release.
 
Outdated template xenforo 1.5: message_user_info
Software will not merge and asking what to do for section to delete...

Code:
<xen:if is="{xen:property messageShowTrophyPoints} AND {$user.user_id} AND {$xenOptions.enableTrophies}">
<dl class="pairsJustified">
<dt>{xen:phrase trophy_points}:</dt>
<dd><a href="{xen:link 'members/trophies', $user}" class="OverlayTrigger concealed">{xen:number $user.trophy_points}</a></dd>
</dl>
</xen:if>

<xen:if is="{xen:property messageShowGender} AND {$user.gender}">
<dl class="pairsJustified">
<dt>{xen:phrase gender}:</dt>
<dd itemprop="gender"><xen:if is="{$user.gender} == 'male'">{xen:phrase male}<xen:else />{xen:phrase female}</xen:if></dd>
</dl>
</xen:if>

<xen:if is="{xen:property messageShowOccupation} AND {$user.occupation}">
<dl class="pairsJustified">
<dt>{xen:phrase occupation}:</dt>
<dd itemprop="role">{xen:string censor, $user.occupation}</dd>
</dl>
</xen:if>

<xen:if is="{xen:property messageShowLocation} AND {$user.location}">
<dl class="pairsJustified">
<dt>{xen:phrase location}:</dt>
<dd><a href="{xen:link 'misc/location-info', '', 'location={xen:string censor, $user.location, '-'}'}" target="_blank" rel="nofollow" itemprop="address" class="concealed">{xen:string censor, $user.location}</a></dd>
</dl>
</xen:if>

<xen:if is="{xen:property messageShowHomepage} AND {$user.homepage}">
<dl class="pairsJustified">
<dt>{xen:phrase home_page}:</dt>
<dd><a href="{xen:string censor, $user.homepage, '-'}" rel="nofollow" target="_blank" itemprop="url">{xen:string censor, $user.homepage}</a></dd>
</dl>
</xen:if>

</xen:hook>
<xen:if is="{xen:property messageShowCustomFields} AND {$user.customFields}">
<xen:hook name="message_user_info_custom_fields" params="{xen:array 'user={$user}', 'isQuickReply={$isQuickReply}'}">

<xen:foreach loop="$userFieldsInfo" key="$fieldId" value="$fieldInfo">
<xen:if is="{$fieldInfo.viewable_message} AND ({$fieldInfo.display_group} != 'contact' OR {$user.allow_view_identities} == 'everyone' OR ({$user.allow_view_identities} == 'members' AND {$visitor.user_id}))">
<xen:if hascontent="true">
<dl class="pairsJustified userField_{$fieldId}">
<dt>{xen:helper userFieldTitle, $fieldId}:</dt>
<dd><xen:contentcheck>{xen:helper userFieldValue, $fieldInfo, $user, {$user.customFields.{$fieldId}}}</xen:contentcheck></dd>
</dl>
</xen:if>
</xen:if>
</xen:foreach>

</xen:hook>
</xen:if>
</xen:contentcheck>
</div>
</xen:if>

</xen:if>

<span class="arrow"><span></span></span>
</div>
Choices 1) resolve using parent (above) 2) resolve using both 3) resolve using custom (below)
Code:
</h3>
</xen:hook>
</xen:if>
<span class="mxarrow"><span></span></span>
</div>
 
Thanks for the update. I chose installing the XML file. Everything looks great and no more warnings about outdated templates.
 
Back
Top Bottom