Skip to content

Nodebb vs Wordpress vs Other

General
4 3 112 1
  • So I have started a Bible Repair/Rebinding business. I repair Bibles and then rebind them with genuine leather. I can also repair other kinds of books and such as well. I am at some point after I break even, wanting to make a website for my business. I know I can use Wordpress + WooCommerce for an instant get up and running solution. I am kind of tired of the Wordpress environment because it is so locked in and most of the plugins you need to pay for, which is understandable even if I find ways or uses for them where you can just use the free portion to get done with what you want.

    I was thinking of looking into Nodebb with an eCommerce open source software to integrate into Nodebb. I am curious what other’s recommendations are and ideas in regard to this. Do I stick with what is fast and easy to setup like the Wordpress way or go the Nodebb + whichever open source would work best with it way?

    I know there are stuff out there like shopify and those types of platforms, but I have heard many stories that as you grow the more plugins and such that you need and the cost goes up with it and you are locked into their proprietary setup and such.

    Thank you all for all the input! I appreciate it!!

  • So I have started a Bible Repair/Rebinding business. I repair Bibles and then rebind them with genuine leather. I can also repair other kinds of books and such as well. I am at some point after I break even, wanting to make a website for my business. I know I can use Wordpress + WooCommerce for an instant get up and running solution. I am kind of tired of the Wordpress environment because it is so locked in and most of the plugins you need to pay for, which is understandable even if I find ways or uses for them where you can just use the free portion to get done with what you want.

    I was thinking of looking into Nodebb with an eCommerce open source software to integrate into Nodebb. I am curious what other’s recommendations are and ideas in regard to this. Do I stick with what is fast and easy to setup like the Wordpress way or go the Nodebb + whichever open source would work best with it way?

    I know there are stuff out there like shopify and those types of platforms, but I have heard many stories that as you grow the more plugins and such that you need and the cost goes up with it and you are locked into their proprietary setup and such.

    Thank you all for all the input! I appreciate it!!

    @Madchatthew I think it really depends on the specific business model - for example, if you are selling directly via the site, then WordPress and Woocommerce make much more sense than NodeBB will owing to the complexity, and available components.

    I love the idea of this business, and it’s a skill that not many people have these days.

    If it were me, I’d go WordPress/Woocommerce, and then perhaps use NodeBB for a community around the product being sold. NodeBB currently doesn’t lean itself very well towards selling, unless you are offering subscriptions. Here, you are selling manufactured and essentially bespoke service, which would instantly lend itself to more established products.

  • @Madchatthew I think it really depends on the specific business model - for example, if you are selling directly via the site, then WordPress and Woocommerce make much more sense than NodeBB will owing to the complexity, and available components.

    I love the idea of this business, and it’s a skill that not many people have these days.

    If it were me, I’d go WordPress/Woocommerce, and then perhaps use NodeBB for a community around the product being sold. NodeBB currently doesn’t lean itself very well towards selling, unless you are offering subscriptions. Here, you are selling manufactured and essentially bespoke service, which would instantly lend itself to more established products.

    @phenomlab this makes a lot of sense and I could maybe see having a community on the website, where as you are saying Nodebb could come into play and possibly move the facebook business page to in the future or slowly over time. Then in the meantime use the tools that are already made for selling and featuring products and such.

    This makes a lot sense. I like to ask though in case there is anything I am missing.


Related Topics
  • What’s going on with NodeBB?

    Performance nodebb script die
    8
    2 Votes
    8 Posts
    768 Views
    @cagatay That is quite the jump as importers from one forum platform to another are notoriously unreliable and could land up being quite costly if it requires managed services.
  • TNG + Nodebb

    General tng genealogy nodebb plugin
    4
    0 Votes
    4 Posts
    917 Views
    @Madchatthew said in TNG + Nodebb: you have to try and use duck tape and super glue to change something to make it do what you want it to do I couldn’t have put that better myself.
  • Rotating homepage icons, gifs?

    Solved Configure nodebb
    2
    3 Votes
    2 Posts
    714 Views
    @eveh It’s not a GIF, no. It’s actually a webp file so made much smaller, and uses keyframes to control the rotation on hover. You can easily make your own though The CSS for that is as below @keyframes rotate180 { from { transform: rotate(0deg); } to { transform: rotate(180deg); } } @keyframes rotate0 { from { transform: rotate(180deg); } to { transform: rotate(0deg); } } Your milage may vary on the CSS below, as it’s custom for Sudonix, but this is the class that is used to control the rotate .header .forum-logo, img.forum-logo.head { max-height: 50px; width: auto; height: 30px; margin-top: 9px; max-width: 150px; min-width: 32px; display: inline-block; animation-name: rotate180, rotate0; animation-duration: 1000ms; animation-delay: 0s, 1000ms; animation-iteration-count: 1; animation-timing-function: linear; transition: transform 1000ms ease-in-out; }
  • Title on homepage of nodebb forum

    Solved Customisation nodebb
    2
    1 Votes
    2 Posts
    1k Views
    @eveh Welcome board The code you are referring to is custom written as no such functionality exists under NodeBB. However, adding the functionality is relatively trivial. Below are the required steps Navigate to /admin/appearance/customise#custom-header Add the below code to your header, and save once completed <ol id="mainbanner" class="breadcrumb"><li id="addtext">Your Title Goes Here</li></ol> Navigate to /admin/appearance/customise#custom-js and add the below code, then save $(document).ready(function() { $(window).on('action:ajaxify.end', function(data) { // Initialise mainbanner ID, but hide it from view $('#mainbanner').hide(); var pathname = window.location.pathname; if (pathname === "/") { $("#addtext").text("Your Title"); $('#mainbanner').show(); } else {} // If we want to add a title to a sub page, uncomment the below and adjust accordingly //if (pathname === "/yourpath") { //$("#addtext").text("Your Title"); //$('#mainbanner').show(); //} }); }); Navigate to /admin/appearance/customise#custom-css and add the below CSS block .breadcrumb { right: 0; margin-right: auto; text-align: center; background: #0086c4; color: #ffffff; width: 100vw; position: relative; margin-left: -50vw; left: 50%; top: 50px; position: fixed; z-index: 1020; } Note, that you will need to adjust your CSS code to suit your own site / requirements.
  • NodeBB v2.4.0

    Solved General nodebb version error
    3
    1
    2 Votes
    3 Posts
    993 Views
    @phenomlab As always…Thank you. Worked for me.
  • NodeBB Blog Comments

    General nodebb blog
    3
    1 Votes
    3 Posts
    920 Views
    @kurulumu-net Not specifically, but you should review this post from the very large thread as it will save you a lot of time. There’s significant customisation on the Ghost side of things, but not in NodeBB https://community.nodebb.org/post/86022
  • Nodebb Hashtag plugin

    Solved General
    15
    1 Votes
    15 Posts
    3k Views
    @jac Great ! I’ll close this off.
  • WordPress & NodeBB

    Solved WordPress
    6
    0 Votes
    6 Posts
    2k Views
    @jac That won’t matter. You just redirect at nginx or apache level and it’ll work. The generally accepted standard though is to use a subdomain.