Portal AI Suite Pro

Portal AI Suite Pro [Paid] 1.0.4

No permission to buy (€39.00)
Michaelb24179 updated Portal AI Suite Pro with a new update entry:

1.0.3

  • Media Carousel: Scroll buttons now work reliably
  • Fixed XF handler initialization for addon JS (timing issue with XF.LazyHandlerLoader)
  • Guest CTA: Improved login button styling (hover effect, dark mode support)
  • Added dark mode overrides to all 11 admin templates:
  • Media Widget: Default limit set to 20 items for better scroll experience

Read the rest of this update entry...
 
Thanks for the improved version and the carousel is working.
I do have a question. In resources, I'm using that for historical articles, so not often are images uploaded to the resource. In the portal I see that the latest resources have a blue place holder because of the lack of image. Is it possible to change that placeholder, or any placeholders that substitute the lack of images?
 
Another feature request:
The Custom HTML widget works very nice in the latest version! Great to see that we can now add multiple blocks.
It would be cool if we could specify specific HTML widgets for dark/light mode.

In Xenforo we normally use the display condition for this ($xf.visitor.style_variation == 'alternate'), but that option is not available and xf syntax doesn't seem to work in the HTLM widget.

Small bug: When you uncheck 'Show as Card' and save the HTLM widget, the 'Show as Card' option is selected again after opening the HTML widget.
 
I’ll take a look and see if I can find a good solution for the dark and light mode handling.

The issue with the “Show as Card” option will be fixed as well.

I expect to have a new version ready by tomorrow.
 
Michaelb24179 updated Portal AI Suite Pro with a new update entry:

1.0.4

New Features
  • Custom HTML Widget: Separate dark mode HTML content field
  • Automatic switching between light/dark HTML based on user's color scheme
  • Works with both manual theme switch and OS-level prefers-color-scheme
  • Category Nav: Separate dark mode accent color
  • Decoupled from main accent color for better readability in dark mode

Bug Fixes
  • Custom HTML Widget: "Show as Card" checkbox now persists correctly when unchecked
  • Admin Dark Mode...

Read the rest of this update entry...
 
The current version corrects the version ID. This is necessary so that Xenforo displays the correct version.

Ideally, a rebuild should be performed after the update. Afterwards, everything will continue to run normally.
 
Please let the fix run. The hash needs to be updated. The version change has altered the hash.

 
Expanding the look into the rest of the site.
I'm assuming that the portal is really just the home page, but the look is great and wondered if it was possible to extend that to uniform the entire site.
I agree with you. If the portal can encompass the entire site, it will be very unique. Though the add-on looks promising. I just used the "ask question" feature; it works well and creates a unique topic on its own.

I have two questions for the developer:

Is there a possibility to make the add-on work for the whole site instead of just the homepage? That's just the portal.
After purchase, is there any extra cost for the AI usage?
 
Right now, the add-on was mainly built as a portal for the homepage. Making it work across the whole site is an interesting idea, but I would first need to come up with a solid concept for how to apply it properly throughout the forum.

As for the AI costs, they are usually quite low. In most cases, it only comes down to a few cents per day, depending on usage and the size of the forum.
 
I agree with you. If the portal can encompass the entire site, it will be very unique. Though the add-on looks promising. I just used the "ask question" feature; it works well and creates a unique topic on its own.

I have two questions for the developer:

Is there a possibility to make the add-on work for the whole site instead of just the homepage? That's just the portal.
After purchase, is there any extra cost for the AI usage?
You can edit the extra.css to create the same look as the portal. You will also need to edite each themes extra.css if you have several themes.
I also replaced the place holders in the portal for the latest in the resource section as i don't use it for downloads or seling and don't have images in the resource threads. So I added a default image to display instead.
Here's my css for you to start with and that should make your site look like the portal.
Feel free to ignore the placeholder if you don't need it (ignore anything after this bit Default placeholder image for article cards)
/* ================================
PP portal-style card layout
================================ */

.p-body .block {
position: relative;
margin: 20px;
}

/* Large white background panel */
.p-body .block::before {
content: "";
position: absolute;
top: -20px;
bottom: -20px;
left: -20px;
right: -20px;
background: #ffffff;
border: 1px solid @xf-borderColor;
border-radius: 18px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
z-index: 0;
}

/* Actual widget */
.p-body .block > .block-container {
position: relative;
z-index: 1;
border-radius: 10px;
overflow: hidden;
background: @xf-contentBg;
box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Header rounding */
.p-body .block-header {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}

/* Bottom rounding */
.p-body .block-body:last-child,
.p-body .block-footer:last-child {
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}

/* Sticky sidebar */
.p-body-sidebar {
position: sticky;
top: 20px;
align-self: start;
}

/* ================================
Default placeholder image for article cards
================================ */

/* Hide the placeholder newspaper icon */
.debArticleCard-coverPlaceholder i {
display: none !important;
}

/* Replace placeholder with default article image */
.debArticleCard-coverPlaceholder {
background: #e5e5e5 url('/images/history-default.jpg') center center / cover no-repeat !important;
}

/* ================================
Default placeholder image for hot slide widget
================================ */

.debPortal-hotSlide-placeholder {
background: #e5e5e5 url('/images/history-widget-default.jpg') center center / cover no-repeat !important;
min-height: 220px;
}
 
Another tweak:
If you want the Home navigation highlighted when you are on the portal page, add <xf:page option="section" value="home" /> to template deb_portal_index.
 
Back
Top Bottom