Lack of interest Like Handler

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

silence

Well-known member
So I'm using XenForo_Model_Like to implement my own like handler that I don't want incremented in the xf_user table, so I'm wondering if this line:
Code:
                $db->query('
                    UPDATE xf_user
                    SET like_count = like_count + 1
                    WHERE user_id = ?
                ', $contentUserId);
could be set to update somewhere via the content type. As it would be much appreciated :D
 
Upvote 0
This suggestion has been closed. Votes are no longer accepted.
I know that the Conversation Essentials add-on basically adds a specific like method for conversation messages and excludes that line of the code.
 
I know that the Conversation Essentials add-on basically adds a specific like method for conversation messages and excludes that line of the code.
Ah well I'll be doing that then :) but maybe down the line it could be made more dynamic?
 
Top Bottom