@yariplus I am guessing this is a pain and I shouldn't expect this to be available anytime soon? Regardless, thanks a lot for looking into it
flurryfish
Posts
-
[nodebb-plugin-forms] Request for feedback -
Custom registration form@paopevil I tried that and it added some strange code to my registration page. Doesn't look like it can be easily customized either.
Does anyone have some sort of tutorial on how to use it?
-
Custom registration formThis is a old topic, but I can't find a solution anywhere.
I would like a custom field for registration and make it required. Is this possible with nodebb?
-
[nodebb-plugin-forms] Request for feedback@yariplus just wondering if you had a chance to look into this. Thanks for all your efforts
-
[nodebb-plugin-forms] Request for feedback@yariplus said in [nodebb-plugin-forms] Request for feedback:
@flurryfish I don't think it actually relied on anything in nbb core, so it might just need filters renamed. I will take a look.
Thanks, appreciate the help
-
[nodebb-plugin-forms] Request for feedbacklooks like the development stopped on this plugin. Safe to assume not compatible with latest version?
We have a section on the form, where I would love all posts to follow a template. A form based submission would be a perfect answer
-
Redactor Composer 1.3.4 Released!Does anyone know if it possible to turn off redactor for mobile view? Use markdown for Mobile and Redactor for full web view?
I love Redactor and users love it as well, but the mobile experience is really bad. The floating bar on mobile makes it really difficult to reply, specially if someone is quoting the original msg.
-
nodebb-theme-material v2.0 publishedholding off on my nodebb upgrade until this theme gets updated. Hopefully soon
-
Pop-Up message by entering a category@pitaj said in Pop-Up message by entering a category:
if (ajaxify.data.template.category && parseInt(ajaxify.data.cid, 10) === restrictedCid) {
Perfect! Thank you so much
-
Pop-Up message by entering a category@psychobunny said in Pop-Up message by entering a category:
Here you go, I threw something quick in a couple minutes that you can add to your custom JS in the ACP that you can improve on if you like:
$(window).on('action:ajaxify.end', function(ev) { var restrictedCid = 1; if (parseInt(ajaxify.data.cid, 10) === restrictedCid) { $('#content').css({ filter: 'blur(10px)' }); bootbox.confirm('Are you 18?', function(answer) { if (!answer) { window.location = 'https://community.nodebb.org'; } else { $('#content').css({ filter: 'none' }); } }); } });
This is awesome, but any way this could only apply to the category only? This seems to create this popup on every single thread within the category for me.