Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
434 views
in Q2A Core by
how to remove parenthesis around Points?  

like admin (120 point) in rtl language parenthesis showing like this.   120) admin)

please help.
Q2A version: 1.5.4

1 Answer

0 votes
by
selected by
 
Best answer

In Snow theme > qa-theme.php file

find function logged_in() around line #67

Find below

 

$this->output(
'<SPAN CLASS="qa-logged-in-points">',
'('.$pointshtml.')',
'</SPAN>'
);
 
Replace with 
 
$this->output(
'<SPAN CLASS="qa-logged-in-points">',
$pointshtml,
'</SPAN>'
);

 

by
thanks.  it work!
...