Hide the "Moved" arrow
Hide the "Moved" arrow
Once I've moved a topic to a better category, I don't want users to see that black "moved" arrow on the left of the topic. How do I get rid of that?
Hide the "Moved" arrow
Once I've moved a topic to a better category, I don't want users to see that black "moved" arrow on the left of the topic. How do I get rid of that?
Great, can you explain best way to access topic hash and remove it please?
Topic hash is topic:
plus the topic id.
e.g. the database entry for this one is: topic:13608
.
Is there a way to edit the database so move field is cleared? I moved some of my forums initial posts a long time ago and dont need the moved arrow or the 'moved from xyz' against them now.
@eeeee the previous cid is stored in the topic hash itself. Just removing that property should work.
Which database are you using?
So the number in the url is the topic id, for example for this topic its /topic/13608
, to remove the moved arrow for this topic you would run the below in mongodb.
undefined
db.objects.updateOne({_key: "topic:13608"}, {$unset: {"fromCid": ""}});