Hello Everyone,
First of all, thank you for your time to review and comment as well.
In the comment field on all pages. I am trying to see if there is a way to change the chronological order from oldest to newest. Instead, be the newest on top and scroll down to the oldest. Is there a way to make this change?
Hi @Robert Pineres ,
as an Admin, go to General Configuration → Look and Feel → Custom HTML and paste this in the "At end of the HEAD" section:
<script>
function reverseCommentOrder(){
$comments = AJS.$('#page-comments');
$comments.children().each(function(i,li){$comments.prepend(li)});
}
AJS.toInit(function(){
reverseCommentOrder();
AJS.$('#comments-section-title').append('<a id="page-comments-reverse" href="#">(Change order)</a>');
AJS.$('#page-comments-reverse').css({ 'color':'#999','font-size':'0.65em'}).click(function(e){
reverseCommentOrder();
e.preventDefault();
});
});
</script>
This will display comments in the reverse chronological order and provide a clickable link (Change order next to the comment counter) to change back this order.
Hope that helps!
Regards,
Nicolai
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.