[nodebb-plugin-custom-pages] Custom Static pages for NodeBB
-
@Arc it should work just fine on v0.9.x - it does for me. You have to install it manually via
npm install nodebb-plugin-custom-pages
in yournodebb
directory. -
@Arc try removing the leading slash in the route
-
@Arc no problem. I've found that slashes in routes can cause lots of problems in NodeBB core and plugins
-
@Arc are you referring to the title displayed in the tab? I think that that feature isn't implemented yet, but not exactly sure.
-
Any idea if this is working in version 1?
-
@HolyPhoenix yeah works fine for me
-
Is anybody else seeing errors and route not found in version 1.0.3 of NodeBB and the latest version of the custom pages plugin (0.3.0)?
In the logs I'm seeing:
warn: [hotswap] Could not find router in stack with hotswapId `custom-pages`
Everything works fine if I revert to [email protected]
-
@jongarrison Since the plugin states
"compatibility": "^1.0.4"
from that version onwards, I guess there is a known incompatibility withNodeBB@<=1.0.3
. -
@frissdiegurke Woah! Thanks for pointing that out.
-
Need some help! Or support.. All work fine and i can create static page!
On that static page we create HTML form for PayPal checkout for example..
How receive USER.EMAIL variable from nodebb and put inside that form as HIDDEN field ???
Also Pay gateway return with method POST some variables! How use returned VAR ??
Need complete transaction and write Transaction ID to redis!
-
@vitasllc Sounds like you are heading towards plugin development vs just putting up a custom static page. Check out how to use NodeBB templates with custom routes and widgets: https://github.com/NodeBB/nodebb-plugin-quickstart
-
@_axe Pretty much the same as in their docs, but you need to
require
the library instead of using a script tag to import it.<div id="typeme"></div> <script> require(['https://cdnjs.cloudflare.com/ajax/libs/typed.js/1.1.1/typed.min.js'], function(){ $("#typeme").typed({ strings: ["First sentence.", "Second sentence."], typeSpeed: 0 }); }); </script>
If you don't want to use a cdn, you can also just put typed.js into your public directory, and just require 'typed.js'.