Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
592 views
in Q2A Core by
Hi,

I used this code in version 1.2 but it not work in version 1.3 (I find not "case 'question':" line).

Is possible add Twitter icon on questions?
related to an answer for: how to add tweet button in Question

2 Answers

0 votes
by
I need this answer too please.
0 votes
by

in 1.3

 

edit qa-theme-base.php

change 

 

elseif (strpos($key, 'q_view')===0)
$this->q_view($part);
 
to 
 
elseif (strpos($key, 'q_view')===0){
     $this->output('<div id="twitter"><script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div>');    
$this->q_view($part);
 
}
...