New comments left go to bottom.

I upgraded to 7.1 Final; and my site does have a lot of mods added.

I noticed that when a new comment is posted it goes to the bottom of the list even though newest first is the default setting.  Which file controls this?  I have looked at inc/classes and I don't see where I have changed any files related to comments.  When I make changes to files, I store the original file along side of the changed one.

Geeks, making the world a better place
Quote · 15 Jan 2013

Solution for 7.1 is the same as the solution for 7.0.9

Open inc/js/classes/BxDolCmts.js


                //--- Some number of comments already loaded ---//
                if(oParent.find('li.cmt:last').length)
                    oParent.find('li.cmt:last').after(s);


Change to this.

                //--- Some number of comments already loaded ---//
                if(oParent.find('li.cmt:first').length)
                    oParent.find('li.cmt:first').before(s)

 

Note: this was originally provided by deano92964 some time back.

Geeks, making the world a better place
Quote · 16 Jan 2013
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.