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. ![]()
안녕하세요, Discourse를 업데이트한 후 다음과 같은 오류가 발생합니다:
deprecated.js:62 [THEME 506 'FKB Pro theme v2'] 비추천 기능 안내: 사이트 초기화 단계에서 `site.mobileView` 또는 `site.desktopView`에 접근하는 것은 비추천됩니다. 향후 업데이트에서는 모바일 모드가 뷰포트 크기에 의해 결정될 예정이며, 그 결과 초기화 단계에서 이러한 값을 사용하면 브라우저 창이 리사이즈될 때 오류와 불일치가 발생할 수 있습니다. 이러한 체크를 페이지 렌더링 중에 실행되는 컴포넌트, 트랜스포머 또는 API 콜백으로 이동해 주세요. [Discourse 3.5.0.beta9-dev 이후 비추천] [deprecation id: discourse.static-viewport-initialization] [info:
모든 Discourse 업데이트는 FKB Pro – Social Theme과 Don의 코드에 새로운 도전이 됩니다.
NO!
yes!
카테고리 제목 이미지를 이전 모습으로 복원하세요.
/* =========================================================
카테고리 제목 이미지 표시 최적화 (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 */
}
@don, 최신 Discourse 버전에서 다음 알림이 표시됩니다:
[관리자 알림] 테마 [‘FKB Pro theme’]에는 업데이트가 필요한 코드가 포함되어 있습니다.
(id: discourse.widgets-decommissioned) (자세히 알아보기)
오른쪽 사이드바 패널의 숫자가 최신 상태가 아닌 이유를 조사하고 있었는데, sessionStorage는 만료되지 않는다는 것을 알게 되었습니다. sessionStorage.removeItem("userDetails")를 실행하자 좋아요 수가 업데이트되었습니다.
이것이 원인으로 보입니다:
해당 데이터에 만료 시간戳(timestamp)을 추가하는 것이 좋은 아이디어일 것입니다.
버튼의 글꼴 크기와 여백(패딩)을 어떻게 변경하나요?
다음 CSS로 이를 수정할 수 있습니다:
.btn {
padding: 1em; // 또는 원하는 값
font-size: 2em; // 또는 원하는 값
}
안녕하세요 ![]()
새로운 업데이트가 도착했습니다 ![]()
이번 업데이트에는 다음 항목들이 포함되어 있습니다:
- 실시간 자동 새로고침: 내비게이션 없이도 백그라운드에서 통계가 자동으로 업데이트됩니다.
- 크로스 탭 동기화: localStorage를 사용하여 모든 열린 브라우저 탭에서 데이터가 일치하도록 유지됩니다.
- 새로운 설정: 새로고침 간격을 사용자 정의할 수 있도록
fkb_panel_cache_ttl이 추가되었습니다. - 호환성: 최신 Discourse Glimmer Post Stream 업데이트와의 호환성이 보장되었습니다.
new topic 버튼의 크기를 어떻게 변경하나요?
또한 왼쪽 사이드바 아래에 사용자 정의 내용을 추가하는 방법은 무엇인가요?
이 정보가 도움이 될 수도 있습니다
‘Finding the right CSS selectors’ 섹션을 찾아보세요
시도해 봤어요! 하지만 작동하지 않아요! 그래서 이 질문을 올립니다.






