Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
394 views
in Q2A Core by

i want to show a title on points when hover on points as in image show below in under red lines. how it show a title on hover?

a custom title on points 

1 Answer

0 votes
by

In your qa-theme.php override the function post_meta_who($post, $class) and replace :

$this->output_split($post['who']['points'], $class.'-who-points');

with :

 

$this->output_split($post['who']['points'], $class.'-who-points', 'SPAN title="your title"');
 
And the result below :
 
...