Favicon Not Updating When Sharing Forum To Slack

Unsolved Technical Support

Suggested Topics


  • 0 Votes
    2 Posts
    381 Views

    To get the root parent you would have to write a plugin and traverse up until you hit parentCid=0, this isn't available in core.

    To detect page changes listen to the action:ajaxify.end client side event.

  • 0 Votes
    4 Posts
    1k Views

    @Jenkler said in Time for update to 1.4.5!:

    0.3.1

    All fixed to 1.4.5 😉

  • 0 Votes
    1 Posts
    800 Views

    I added text into the "Forum Terms of Use" section on the ACP ("Settings -> User -> User Registration") but when users register for a new account, they're never prompted or shown this text.

    Has anyone else experienced this problem? I need users to "Agree" to my ToU before registering. Is there some type of plugin or fix for this?

  • 1 Votes
    2 Posts
    2k Views

    If you've forked the Lavender theme, just add the original source as another remote:

    $ git remote add upstream git://github.com/NodeBB/nodebb-theme-lavender.git

    Then every time you want to merge the latest changes in:

    $ git fetch upstream && git merge upstream/master
  • 0 Votes
    2 Posts
    2k Views

    If it works for you, keep it up.

    The semi-official way to do this is to fork the plugin you want to use, and make the appropriate changes.

    Then, add the original repo as an upstream branch (using lavender as an example):

    git remote add upstream https://github.com/NodeBB/nodebb-theme-lavender.git

    When you want to update to the latest lavender for your theme, merge or rebase:

    git checkout master && git fetch upstream && git merge upstream/master