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?
-
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?
Go to
/admin/appearance/customise
and paste this into the black textbox..fa.fa-arrow-circle-right { display:none; }
and hit the save icon.
-
Go to
/admin/appearance/customise
and paste this into the black textbox..fa.fa-arrow-circle-right { display:none; }
and hit the save icon.
@MJ Might want to make it more specific to the category page so it doesn't hide all right arrow icons everywhere
-
@MJ Might want to make it more specific to the category page so it doesn't hide all right arrow icons everywhere
@baris said in Hide the "Moved" arrow:
> @MJ Might to make it more specific to the category page so it doesn't hide all right arrow icons everywhereHow? can you please tell me, i'm still learning CSS
-
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?
If you look at the source of the category page, on the body element there's a class attribute containing multiple classes. One of which is something like
category-3
. You can add.category-3
to the beginning of the css selector you already have there to make it only specific to that category. Make sure there's a space between.category-3
and the rest of it. -
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?
-
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?
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. -
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.
-
Great, can you explain best way to access topic hash and remove it please?
-
Which database are you using?
-
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
.