AsmBB

Power
Login Register

how can i delete categories ?
0

#15609 (ツ) ufuk
Created 12.11.2018, read: 2151 times

how can i delete categories ?

#15616 (ツ) johnfound
Last edited: 12.11.2018 by johnfound, read: 2149 times

Use the SQLite console. There are several ways, depending of what actually you want:

I. If you don't need the tag, simply delete it:

  delete from tags where tag='TAGNAME';

II. Or if you want to keep the tag, you can

1:

Set it's importance < 0 (this will hide the tag from the tag list as well, but it still can be used for threads):

  update tags set Importance = -1 where tag = 'TAGNAME';

2: Set its description to NULL (will remove it from the categories, but will be visible in the tag list):

  update tags set Description = NULL where tag = 'TAGNAME';

how can i delete categories ?
0

AsmBB v3.0 (check-in: a316dab8b98d07d9); SQLite v3.42.0 (check-in: 831d0fb2836b71c9);
©2016..2023 John Found; Licensed under EUPL. Powered by Assembly language Created with Fresh IDE