Hi everyone,
I’m currently using the Suppress category from latest plugin to hide topics from the /latest page while still displaying them within their respective categories. I have about 200 categories that I want to hide from /latest, and only around 10 categories that should show topics on the homepage.
To accomplish this, I attempted to run the following code in the Rails console:
Category.all.each do |cat|
cat.custom_fields["suppress_latest"] = true
cat.save_custom_fields(true)
end
The command seems to execute without errors (it even returns {"suppress_latest"=>"t"}
), but when I check the /latest page, the topics from those categories are still visible.
Here are the steps I’ve already taken:
- I ran
./launcher rebuild app
and./launcher restart app
- I confirmed via Rails console that the custom field is set to
"t"
for the affected categories - I’ve also tried clearing caches, but nothing seems to change
It appears that even after setting the custom field, the topics from these categories still show on the homepage. Has anyone experienced this issue or found a way to bulk suppress topics from /latest effectively? Is there a known compatibility issue with subcategories, or should the plugin be using a different key/value for suppression?
Any guidance or alternative approaches would be greatly appreciated!
Thank you!