XF2 [8WR] XenPorta 2 (Portal) PRO

XF2 [8WR] XenPorta 2 (Portal) PRO [Paid] 2.2.0.7

No permission to buy ($40.00)
Hi Christeris. :) I was think the same just seeing the notification of this thread. :)
Is always a pleasure to see and hear you. Really happy that too you are here.

Yes that I just have but is there only this inside the option of this addon:

1601997469124.png
 
Last edited:
Sorry but this is not relative to the slider?
Also in my installation is setted as the Image you show. So is not clear what change
 
Got you :)

Find the template: EWRporta_articles_index template

Under:

<xf:head option="rss_forum"><link rel="alternate" type="application/rss+xml"
title="{{ phrase('rss_feed_for_x', {'title': $xf.options.EWRporta_title ?: $xf.options.boardTitle})|for_attr }}"
href="{{ link('ewr-porta/index.rss', '-') }}" /></xf:head>

Add:

<xf:css>
.message-body{
height: 500px;
overflow: hidden;
}
</xf:css>


Change height: 500px; to suit your needs
 
Thanks Webbouk for your help.
I have tried in this way but furthermore nothing is changed

Code:
<xf:head option="rss_forum"><link rel="alternate" type="application/rss+xml"
    title="{{ phrase('rss_feed_for_x', {'title': $xf.options.EWRporta_title ?: $xf.options.boardTitle})|for_attr }}"
    href="{{ link('ewr-porta/index.rss', '-') }}" /></xf:head>
<xf:css>
.message-body{
height: 500px;
overflow: hidden;
}
</xf:css>
<div class="porta-articles-above-full">
    <xf:widgetpos id="ewr_porta_articles_above_full" context-page="{$page}" />
</div>

Really strange that there isn't a function to do this in the addon
 
In each way many thanks Webbouk for your help and availability.
In each way for me is really incredible that an addon as this haven't also this basic function.
 
Thanks Webbouk for your help.
I have tried in this way but furthermore nothing is changed

Code:
<xf:head option="rss_forum"><link rel="alternate" type="application/rss+xml"
    title="{{ phrase('rss_feed_for_x', {'title': $xf.options.EWRporta_title ?: $xf.options.boardTitle})|for_attr }}"
    href="{{ link('ewr-porta/index.rss', '-') }}" /></xf:head>
<xf:css>
.message-body{
height: 500px;
overflow: hidden;
}
</xf:css>
<div class="porta-articles-above-full">
    <xf:widgetpos id="ewr_porta_articles_above_full" context-page="{$page}" />
</div>

Really strange that there isn't a function to do this in the addon

Sometimes a !important make the trick. Without to be sure that it will works, you can give one more try with:
CSS:
<xf:css>
    .message-body {
        height: 500px !important;
        overflow: hidden !important;
    }
</xf:css>

But if you're using XF 2.2 give a try to the official Articles listing. Is not the best, but is good enough and mostly is official feature. As for me I removed it after upgraded to XF2.
 
Last edited:
Something weird is happening here, seems to only happen in Firefox:

1602207132647.webp

The Article columns overflow the latest posts widget if one of the columns is longer than the other. This is in version 2.2.0.3
It might be something in my skin, but I tested it with the default XF skin and the same thing happened, so I don't think it's just my skins.

This doesn't happen in Chrome, or Edge. Didn't notice it in Safari either..... Just Firefox 81.0.1 64-bit on Win 10.
 
Top Bottom