Hi, I have seen few topics with the solution I am looking for.
I think my question is very similar to latest @abcoathup question in this post.
However, this was not answered. How can I configure my discourse site so that when users enter the main address they jump directly to mysitedomain/latest?order=created ?
And additionally, when users press on the button latest, how I configure the site so that they are re-directed to mysitedomain/latest?order=created. ?
api.modifyClass("component:navigation-item", {
active: Ember.computed("contentFilterMode", "filterMode", function() {
let contentFilterMode = this.get("content").get("filterMode");
if (decodeURIComponent(window.location.search) === location) { // check search param
return contentFilterMode.includes(filter); // if includes this param, active = true;
} else {
return this._super(contentFilterMode, this.get("filterMode"));
}
})
});
This works for me but this script will refresh whole page rather than just the inner part, is there a way I can make it only refresh inner topic component?
Hi @HeyRR, have you got this resolved. Would be interested as well as many of our members are requesting a possibility to order the latest page by creation date and not by activity date?
Weād like to see this in our Discourse community. We are new to Discourse but currently finding it difficult to moderate our community and ensure no user feedback, questions etc slip through the cracks. Since we are all working across different time zones the handoff from one moderator to another can be tricky. It would be great if we could easily choose to see all activity created on a certain day. That way if there is a gap in our handover we would see any activity for the hours we were not āon callā It would also help us to see who should be responding to activity based on when it was created.
Iād like to add my vote for more support for this:
Some of us are very used to browsing things with a stable chronological order; this helps us use our human spatial āhardwareā to keep track of what we have seen. A discourseās shifting Latest view (coupled with all the other view options, and other UI elements) can feel a bit chaotic and stressful.
And, Iāve spent quite a bit of time in our new discourse understanding and explaining that āLatestā actually has two important variants, āLatest Active/Pinnedā which you get if you click the site title, and āLatest Createdā which you get if you click the Latest navigation link.
Currently āLatest Createdā (?order=created) can be configured as default for the Categories view, but not for the Latest view.
We also quite miss having a āLatest Created/Pinnedā. Currently, on Latest and Categories views we can show topics chronologically, or show pinned welcome topics at the top, but not both.
I feel we need to rethink the āhome pageā setting in Discourse to allow any route to be a home page and give the flexibility to users to pick the home page they want. Currently we have 5 or 6 things on the menu but really we could allow 100s by allow a ācustomā¦ā for home page.
Adding to the fun: Iāve noticed that when I navigate (various ways) to Top or Hot, they often but not always have ?order=created added to the url, which defeats their purpose. Havenāt figured out what triggers this one!