We successfully integrated wordpress with nodebb, every thing works great.Here is my site "https://www,happyusclub.com". But during login from the nodebb site , the referrer link in the header is showing as "https://forum.happyusclub.com" without any permalinks.
Basically we are trying to redirect users to the referrer page after login.(similar to nodebb community after login the users redirecting to the page where they come from). But in my site when the user clicks login it goes to wordpress sso as expected but with referrer link as forum homePage without any permalink. Can anyone share your thoughts on how to approach this problem.
[nodebb-plugin-calendar] Fully featured calendar plugin for NodeBB - Testers needed
-
Hello
It's great the event background colour matches the category it was posted in. However, is it possible for the event's text colour to match the category too?
The category I use for event posts has a bright yellow background with black text. Since it seems calendar events always use white text, it means the event text can't be read.
Thanks for a great plugin though!
-
@mrb I don't see that being terribly difficult. Please open an issue on GitHub
-
@PitaJ Done, thanks.
-
Hi @PitaJ !
Sorry for bothering you !
Whenever I'm building the plugin myself (I tried to build both your version and my altered version), user avatars in response-lists are not working anymore, do you have any tips ? I'm no JS pro so I'm quite overwhelmed
I'm trying to integrate a discord webhook to post events on our discord server whenever we are creating an event.
Source code is here https://github.com/fl4shback/nodebb-plugin-calendar/tree/discord-integration if you want to take a look at it.
Thank you
-
@Fl4shBack51 what version of NodeBB are you on?
-
@PitaJ
1.12.2 -
@PitaJ Hey !
just to keep you updated, I solved the issue by reverting the changes made by the latest commit (which isn't included in the 50 release) https://github.com/pitaj/nodebb-plugin-calendar/commit/592f41690437acc502ca21b95eeed4e5e0d186cf
Now I'm able to do my edits and build the plugin juste fine and everything works!
-
@Fl4shBack51 what theme are you using? It is the latest version?
-
@PitaJ Persona 9.1.36 on nodeBB 1.12.2
EDIT:
Just saw it's not the latest version of persona but I don't have any pending update in ACP -
New version. Please try out
[email protected]
Note: this version requires NodeBB v1.13.0npm i [email protected]
Changelog:
- Support NodeBB v1.13.0
- Fix broken avatar sizing in response lists
- Bump dependencies
Warning multi-day responses in topics are broken in NodeBB v1.13.0, but they should work fine in the calendar interface. I've submitted a PR that will fix this when a new NodeBB version is released
-
New version. Please try out
[email protected]
Note: this version requires NodeBB v1.13.xnpm i [email protected]
Changelog:
- Add translation for Turkish language #127
- Bump dependencies
-
New version. Please try out
[email protected]
Note: this version requires NodeBB v1.13.xnpm i [email protected]
Changelog:
- Match category text color in calendar view @mrb
- Fix teaser handling (previously teasers showed a garbled mess)
-
@PitaJ thanks.
-
In case anyone is interested to make the panel darker with the night mode plugin, we have this modification to CSS
body.lights-out { #plugin-calendar-cal-event-display { .modal-header { background-color: #333 !important; } .modal-footer { background-color: #333 !important; } } }
-
New version. Please try out
[email protected]
Note: this version requires NodeBB v1.13.xnpm i [email protected]
Changelog:
- Fix #128: unhandled promise rejections when restoring a post without an event
-
Hi @pitaj , I think current master version (alpha.56) is not compatible with NodeBB 1.15.2?
Are we doing something wrong? or should we install:
npm i [email protected]
-
@crazycells I forgot to issue a changelog for this, but there's actually a fix for 1.15 in the latest calendar plugin version.
I'd suggest using alpha.56
If you encounter any problems please open an issue on GitHub.
-
@pitaj can you please check the error log in the link?
-
New version. Please try out
[email protected]
Note: this version requires NodeBB v1.15.x or laternpm i [email protected]
Changelog:
1.0.0-alpha.57 had the following fixes
- Fix #137: editing events in 1.16.2
I believe this version is the most stable I've even released, which is why I think it deserves to escape from alpha status.
-
Hi @PitaJ !
I'm definitely no JS coder but I had a need so I tried to build my own solution.
I ported the discord webhook notification from this project to the latest version https://github.com/fallendusk/nodebb-plugin-calendar-gaiaI'm trying to import the translator to translate the webhook message to be "functional enough" to submit a PR.
So far, I've not managed to do it without having issues. Do you have a suggestion ?Here's my edited version: https://github.com/fl4shback/nodebb-plugin-calendar/blob/0f71635085a3a5c900b745bc259a93031dc76c1a/src/lib/postSave.ts
Thanks