R_J
AdminR_J Admin
-
Re: add link discussion after hit anchor in comment
In such a case you should do two things: 1. look at the code that fires the event in order to know what markup is expected and 2. check the rendered html if the output has the desired markup Look at … (View Post)1 -
Re: add link discussion after hit anchor in comment
You could always test if your function is called by inserting something like decho(__LINE__); In this case I would assume it is not called because that is never used as an event: https://github.com/v… (View Post)1 -
Re: Profile Picture thumb CSS
Use Firebug, Webinspector or whatever tool your browser supports. You can inspect how it is done here and try to copy that for your forum. Best way to make small changes to existing themes is by usin… (View Post)2 -
Re: add link discussion after hit anchor in comment
As far as I understand this, the info which comment is marked is only stored in the specific comment, correct? If that's so, you would have to loop through all comments in order to find out the corre… (View Post)2 -
Re: How can I access DiscussionModel data in DiscussionController Object?
Sometimes you will not be able to see the output unless you stop the process: decho($sender); die; But for sure you cannot do this in your live system. You can also write to your file system file_put… (View Post)2