Skip to content

Viewing Permission.

Solved General
33 2 9.3k 1
  • @Sampo2910 registered and email validated.

    @phenomlab Should be Admin now.

  • @phenomlab Should be Admin now.

    @Sampo2910 thanks. I’ll look at this tomorrow.

  • @Sampo2910 thanks. I’ll look at this tomorrow.

    @phenomlab No problem. Thank you 🙂

  • @phenomlab No problem. Thank you 🙂

    @Sampo2910 Interesting. I took a look at this in more detail, and it seems you’re right. I can display the topics in each category (after setting the relevant permissions), but you can’t open them unless you register. That’s great.

    However, this seems to have a material impact on the recent view in the sense that nothing will show up as it requires the “Access Topic” right. Based on this, the options are somewhat restrictive in terms of which route will work best. Recent topics is almost useless as a view if you can’t see the topics that you have access to - I think that this is likely a better question for the NodeBB devs themselves.

    You could create a custom page, copy the recent template, and modify the underlying code to get what you want, but to me, this seems a little overkill for what should be a relatively simple ask.

  • @Sampo2910 Interesting. I took a look at this in more detail, and it seems you’re right. I can display the topics in each category (after setting the relevant permissions), but you can’t open them unless you register. That’s great.

    However, this seems to have a material impact on the recent view in the sense that nothing will show up as it requires the “Access Topic” right. Based on this, the options are somewhat restrictive in terms of which route will work best. Recent topics is almost useless as a view if you can’t see the topics that you have access to - I think that this is likely a better question for the NodeBB devs themselves.

    You could create a custom page, copy the recent template, and modify the underlying code to get what you want, but to me, this seems a little overkill for what should be a relatively simple ask.

    @phenomlab Hi,

    Thanks for taking a look. And yes it is overkill just for that problem. I noticed it on this forum ad liked the idea of it. However you can access topics here. I can just leave it as is and I will have the categories as the ‘home page’ Guests can see them but not enter.

    I will now try to look into why the tenor gif icon is missing in the posting section, plus why recent cards are vertical (lavender style) haha. It is always something.

    You are a gentlemen Mark and thank you again. 🙂

  • @phenomlab Hi,

    Thanks for taking a look. And yes it is overkill just for that problem. I noticed it on this forum ad liked the idea of it. However you can access topics here. I can just leave it as is and I will have the categories as the ‘home page’ Guests can see them but not enter.

    I will now try to look into why the tenor gif icon is missing in the posting section, plus why recent cards are vertical (lavender style) haha. It is always something.

    You are a gentlemen Mark and thank you again. 🙂

    @Sampo2910 said in Viewing Permission.:

    I will now try to look into why the tenor gif icon is missing in the posting section, plus why recent cards are vertical (lavender style) haha. It is always something.

    I can take a look at this if you’d like

  • @Sampo2910 said in Viewing Permission.:

    I will now try to look into why the tenor gif icon is missing in the posting section, plus why recent cards are vertical (lavender style) haha. It is always something.

    I can take a look at this if you’d like

    @phenomlab 🙂 Happy for you too.

    I posted in NodeBB also.

  • @phenomlab 🙂 Happy for you too.

    I posted in NodeBB also.

    @Sampo2910 having looked at this on your forum, there appears to be an issue with the latest release of nodebb-plugin-recent-cards. I downgraded to 2.0.22 which works fine

    b5057ce7-b11a-4f24-9472-69f773abf218-image.png

  • @phenomlab 🙂 Happy for you too.

    I posted in NodeBB also.

    @Sampo2910 I’ve also just fixed the tenor-gif missing icon issue. This is in fact not an actual font-awesome icon, but some CSS, which I’ve added to your forum

    .fa-tenor-gif::before {
        content: 'GIF';
        font-size: 1rem;
        font-family: sans;
        background: #333;
        color: #fff;
        padding: .25rem .5rem;
        border-radius: .5em;
        position: relative;
        top: -.2rem;
    }
    

    Should show correctly now

    51f8e281-39a1-4b47-af3b-c7dd4a3be7ab-image.png

  • @Sampo2910 I’ve also just fixed the tenor-gif missing icon issue. This is in fact not an actual font-awesome icon, but some CSS, which I’ve added to your forum

    .fa-tenor-gif::before {
        content: 'GIF';
        font-size: 1rem;
        font-family: sans;
        background: #333;
        color: #fff;
        padding: .25rem .5rem;
        border-radius: .5em;
        position: relative;
        top: -.2rem;
    }
    

    Should show correctly now

    51f8e281-39a1-4b47-af3b-c7dd4a3be7ab-image.png

    @phenomlab

    Ah Mark you are a star. Thank you very much. I just logged on and seen someone had worked their magic 🙂

    Again it is very much appreciated.

  • phenomlabundefined phenomlab has marked this topic as solved on

Did this solution help you?
Did you find the suggested solution useful? Support 💗 Sudonix with a coffee
If your organisation needs deeper expertise around infrastructure, security, or technology leadership, learn more about Phenomlab Ltd. Many of the deeper technical guides behind Sudonix are published there.

Related Topics
  • Nodebb vs Wordpress vs Other

    General wordpress nodebb woocomerce business
    4
    4 Votes
    4 Posts
    1k Views
    PrestaShop + modules IA https://www.prestashop.com Magento https://developer.adobe.com/open/magento
  • 14 Votes
    13 Posts
    2k Views
    I have to give an update on this. I talked to my father in law a week or two ago when he was visiting and he updated me that Fedora Linux was still treating them good. He said he really liked it and that my mother in law is liking it as well. He even said that he came across a couple of minor issues and was able to solve them on his own. I thought wow, that is awesome! So I am going to say with all confidence right now, that if those two can switch to Linux from Winblows that ANYONE can switch.
  • Changing H2 color

    Solved WordPress customisation
    5
    3 Votes
    5 Posts
    1k Views
    @Sala Just checked your site. This should work .bs-blog-post .title, .bs-blog-post .title a { color: #ffffff; } It’s worth noting the existing CSS, which uses variables like the below color: var(--head-color); These come under the :root section as below :root { --head-color: #212121; --stext-color: #000; --text-color: #718096; --wtext-color: #fff; --bg-color: #fff; --box-color: #fff; --border-color: #e2e8f0; --wrap-color: #eff2f7; } You can easily override these by using the CSS I provided at the top of this post, or you can change the underlying colours defined in the variables. However, taking this route may mean other objects are styled in the same way, which may not be the desired result.
  • Recent Cards Plugin

    Solved Configure customisation
    5
    1
    4 Votes
    5 Posts
    2k Views
    @crazycells that’s a good point. Thanks
  • Embed - What Are You Using?

    Solved General customisation plugin
    13
    3 Votes
    13 Posts
    3k Views
    @DownPW Hmm - it’ll work with iFramely (locally hosted), or you can use the below string to embed using https://community.nodebb.org/topic/7135/nodebb-plugin-ns-embed-ns-embed/114 Watch (?:<a.*?)?(?:https?:\/\/)?(?:www\.)?dailymotion\.com\/video\/([a-zA-Z0-9_-]{4,11})(?:.*?\/a>)? Replace <div class='embed-wrapper'><div class='embed-container'><iframe src='//www.dailymotion.com/embed/video/$1' frameborder='0' allowfullscreen></iframe></div></div> [image: 1661188242952-4f5f13f7-0c73-460e-b32f-f974f170b236-image.png]
  • NodeBB Mess / Mongo DB

    Solved Configure support
    8
    4 Votes
    8 Posts
    2k Views
    @Sampo2910 You’ll get that error if the .json file isn’t updated for latest release compliance - but you can still install from the CLI by using npm install nodebb-plugin-whateveritis
  • 9 Votes
    32 Posts
    12k Views
    @DownPW said in Bottom footer navbar button extend: Oh my god, it’s beautiful mark I liked this design so much, I’ve implemented it here. I intend to do a lot more with the footer in due course, so hiding it makes a lot of sense. Thanks @DownPW for the idea and initial concept
  • 3 Votes
    4 Posts
    2k Views
    @cagatay same here. Was previously an IONOS user, but moved to Hetzner to realise both savings and performance increase and have never looked back.