Hello
Unfortunately I can’t repro it. I’ve also tried it on your site and looks ok for me.
I just ran a few more tests and noticed this: the 429 issue only happens when I’m logged in. When I’m logged out, the problem doesn’t occur at all. So I believe the issue is indeed with the FKB Panel, with the user infos, usercard, etc.
I can reproduce this “429 (Too Many Requests)” issue too using this theme.
Hello ![]()
We now add these fetched datas to sessionStorage, hopefully that will help: DEV: Save fetched userDetails and userCardDetails into sessionStorage · VaperinaDEV/fkb-pro-theme@f880e5c · GitHub
Seems like the chat goes up in the air when the composer is open in recent discourse updates
i thought it was my custom tweaks but i disabled the component that overrides the default styling but it was the same.
Hi guys - I’m not sure if this is the appropriate place to post as I haven’t been on the meta for a while - There use to be a really hyped up theme that wasn’t released and I remember it being a demo theme on the discourse forum. I can’t seem to find it any more and I’m curious if this was the theme that it was?
Many thanks,
Noah
I don’t think FKB Pro is the theme you have in mind. It was shared in 2022.
My guess would be that you are looking for the Central theme
The repository is still available on Github, but I am not sure how actively it’s maintained as it was never released and is still experimental.
Bingo!! Looks like it’s unlisted. ![]()
Hello, after updating discourse, I am getting the following error:
deprecated.js:62 [THEME 506 'FKB Pro theme v2'] Deprecation notice: Accessing `site.mobileView` or `site.desktopView` during the site initialization phase is deprecated. In future updates, the mobile mode will be determined by the viewport size and as consequence using these values during initialization can lead to errors and inconsistencies when the browser window is resized. Please move these checks to a component, transformer, or API callback that executes during page rendering. [deprecated since Discourse 3.5.0.beta9-dev] [deprecation id: discourse.static-viewport-initialization] [info:
Every Discourse update is a new challenge to the FKB Pro – Social Theme and Don’s code.
NO!
yes!
Restore your category title images to their previous appearance.
/* =========================================================
分类标题图片显示优化(Category Heading Logo Fix)
解除 Discourse 默认 aspect-ratio 限制,显示原图比例
Fixes Discourse category heading logo aspect ratio limits
========================================================= */
/*
解除分类标题图片比例限制,让图片以原尺寸显示
Remove aspect ratio restriction so the image displays in its true size
*/
.category-heading__logo.aspect-image {
aspect-ratio: auto !important; /* 移除固定宽高比 / Remove fixed aspect ratio */
width: auto !important; /* 自动宽度 / Auto width */
height: auto !important; /* 自动高度 / Auto height */
display: inline-block !important; /* 内联块显示 / Inline-block display */
overflow: visible !important; /* 避免被裁剪 / Prevent cropping */
}
/*
让图片保持原始比例显示
Ensure the image keeps its original aspect ratio
*/
.category-heading__logo img {
width: 250px !important; /* 原图宽度(可修改) / Original image width (adjustable) */
height: 120px !important; /* 原图高度(可修改) / Original image height (adjustable) */
object-fit: contain !important; /* 保持完整比例不裁剪 / Maintain full ratio without cropping */
border-radius: 6px; /* 可选圆角效果 / Optional rounded corners */
box-shadow: 0 0 4px rgba(0,0,0,0.4); /* 可选阴影效果 / Optional shadow for better visual depth */
}







