hgtonight
MVPhgtonight MVP
This is an activity!
Reactions
-
Re: [Moved] JsConnect tells me something has gone wrong
http://php.net/manual/en/function.debug-backtrace.php Looks right to me :) (View Post)2 -
Re: Won't post to Facebook with SSO Connected Properly
I am getting the following error when clicking on your Facebook share button: "{"error":{"message":"(#200) The user hasn't authorized the application to perform thi… (View Post)1 -
Re: Vanilla Forum Plugin for Wordpress
There is some type of mismatch on your site. Either you are using Vanilla comments and WP thinks there are none. Or you are using WP comments and Vanilla thinks there are none. (View Post)2 -
Re: Displaying Reaction Points Total in Discussions Archive
You could hook into the model after the retrieval, loop through the discussion objects, and perform the query on each one. Not very efficient, but it can be done: public function DiscussionModel_Afte… (View Post)2 -
Re: Displaying Reaction Points Total in Discussions Archive
The SQL you are looking for would be something like this: SELECT sum(d.Score)+sum(c.Score) AS TotalScoreFROM `gdn_discussion` dLEFT JOIN (select cs.DiscussionID, sum(cs.Score) as Score from `gdn_comm… (View Post)3
