XF2 [8WR] XenPorta 2 (Portal) PRO

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

No permission to buy ($40.00)
Hello. I have recently bought this product. However, I am having some issues setting it up and any help will be greatly appreciated, thanks!

I have installed it successfully via the addons feature and had no errors.
I got a few topics and threads, but none are appearing in the interface menu.

1722152108757.webp

This is what I see on my admin menu. The forum name is https://lob.bg/forum.
Featuring a post only makes it appear here:
Screenshot 2024-07-28 at 10.37.25.webp

However, I still do not see it in my addon menu in any way.

I'd like for featured posts to be forwarded to https://lob.bg/ instead.

Any help will be appreciated, thanks.
 
Last edited:
Hello,

I would like to have the same home icon on the XenPorta home button (on the right on the screenshot) as the one coming with the default home button (on the left on the screenshot).

How can I do that?



Capture d’écran 2024-07-28 072654.webp
 
Last edited:
When I open the moderator menu for an already existing article, it still displays « promote to article », even if the thread is already in the list of articles of the portal. If I still click on the function, I arrive in the editing window (as it should). Same behaviour with feature. I tried a fresh install of the addon, without touching anything to the settings, but still the same : no « Edit article promotion » or « Edit feature promotion » but the link is ok both time.


Edit : I have found the solution : "Enable custom article layout" must be ticked in the portal options.
 
Last edited:
Me again. 😁

Il would like to customize the way that articles are displayed, to get the first article in the list to be displayed alone in full width and the others below still displayed in 3 columns.

My forum is about photography, so we use the portal for articles about materials, but also to show some of the photos posted by the members.

I have simulated what I would like, using a second article block in the widgets, but it is not the best way to get it because the same article will be repeated twice on the portal page.

Capture d’écran 2024-07-29 003734.webp

Thanks by advance for your help. :)
 
Last edited:
This is what I use on https://8wayrun.com/:

Code:
@media (min-width: ~"calc(@xf-EWRporta_masonry_width * 2)")
{
    .porta-masonry .porta-article-item:nth-child(7n+1),
    .porta-masonry .porta-article-item:nth-child(7n+7) { grid-column: span 2; }
}
 
Maybe something missing : when I reduce the width of my browser to test the responsive design, this is what happen (no issue doing the same with the 3 columns) :
You have to nest the code above with media queries, as Jaxel said.
 
Try this
Less:
@media (min-width: ~"calc(@xf-EWRporta_masonry_width * 2)") {
    .porta-masonry .porta-article-item:first-child {
        grid-column: span 3;
    }
}
 
For mobile view, all good.

Still an issue like on the first screen shot above when I reduce the width of my web browser, until it goes to mobile mode.
 
Back
Top Bottom