3.4.0 Upgrade Support
-
When choose tags, forum didn't found topics with this tags...
-
I think this method is a bad practices for users, for example I have a 10 topics with one tag for all topics -
smartphones
and individual tagsios
,android
,harmonyos
,windows
.When user want found all topics with tags
ios
andandroid
the forum will not find anything, because the filter is an employee on the principle oftag1
+tag2
+tag3
.But we understand if user select
ios
andandroid
he want found all topics withios
ORandroid
The advanced search
/search
it too can't found a all topics with multiple tags... -
Can't disable this option, I'm try set
0
or empty value in settings and it's not disable this alert... -
-
Search button in navbar not showing for guest if allow search for all group in setting.offtopic
-
@brazzerstop filed an issue https://github.com/NodeBB/NodeBB/issues/12056
-
@brazzerstop said in 3.4.0 Upgrade Support:
I think this method is a bad practices for users, for example I have a 10 topics with one tag for all topics - smartphones and individual tags ios, android, harmonyos, windows.
Totally agree, the expected behavior is for it to work like the category filter on the topics page, you can select multiple categories and it shows topics from each of them (or in this case, multiple tags)
-
How search looks for guest
-
hi @baris , is there any reason that the stale topic function cannot be disabled?
We already have the necro threshold set, so I would like to set it to "0" to disable this function, if technically possible, I will open a GH issue.
-
lol sorry my bad, It is indeed on the previous page.
-
Need fix breadcrumbs schema for SEO in Category.
nodebb-theme-harmony/templates/category.tpl at main · NodeBB/nodebb-theme-harmony
Harmony theme for NodeBB v3.0+. Contribute to NodeBB/nodebb-theme-harmony development by creating an account on GitHub.
GitHub (github.com)
The current method is not work in search engine and on forum this navigation stroke everytime show
Home
We need set content 0 to category name and content 1 to topic title, after this we get correct result in search.
Upd. Or maybe content 0 to forum name (look on screenshot www.google.com was replace to Google), and next content 1 - category name, content 2 - topic title.
I tested this on my forum by adding json and after reindexing the search correctly shows beautiful links. A small thing, but nice.
-
Our category page does have breadcrumbs do you mean the topic page? We need to add https://developers.google.com/search/docs/appearance/structured-data/breadcrumb#json-ld into topic.tpl maybe.
-
@baris category page have it, but with incorrect data...
@baris said in 3.4.0 Upgrade Support:
do you mean the topic page?
On category page should be category name (Technical Support, not Home) and topic page we need set category name + topic title
And if we want to show the community name instead of a link, we need to add content 0 with the community name. So we get this result in search:
NodeBB Community > Technical Support > How are you?
NodeBB Community - content 0 in schema
Technical Support - content 1 in schema
How are you? - content 2 in schema -
nodebb-theme-harmony/templates/partials/breadcrumbs.tpl at main · NodeBB/nodebb-theme-harmony
Harmony theme for NodeBB v3.0+. Contribute to NodeBB/nodebb-theme-harmony development by creating an account on GitHub.
GitHub (github.com)
<ol class="breadcrumb mb-0" itemscope itemtype="https://schema.org/BreadcrumbList"> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem" class="breadcrumb-item"> <a itemprop="item" href="https://community.nodebb.org"> <span itemprop="name">NodeBB Community</span></a> <meta itemprop="position" content="1" /> </li> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem" class="breadcrumb-item"> <a itemprop="item" href="https://community.nodebb.org/category/16/technical-support"> <span itemprop="name">Technical Support</span></a> <meta itemprop="position" content="2" /> </li> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem" class="breadcrumb-item"> <a itemprop="item" href="https://community.nodebb.org/topic/17532/3-4-0-upgrade-support/91"> <span itemprop="name">3.4.0 Upgrade Support</span></a> <meta itemprop="position" content="3" /> </li> </ol>