HI i want to remove the parenthesis from the posts count number as you can see at the image bellow. For example instead of (11.2k) to display 11.2k without the parenthesis. In the theme file qa-theme it generates the number of posts like that:
if (strlen(@$navlink['note'])) { $this->output('<span class="qa-' . $class . '-note">' . $navlink['note'] . '</span>'); }
if (strlen(@$navlink['note'])) {
$this->output('<span class="qa-' . $class . '-note">' . $navlink['note'] . '</span>');
}
But cant see any parenthesis there !! Thanks in advance.
Just follow these steps:
1. Edit file qa-theme/<your-theme>/qa-theme.php
2. Turn these two lines into:
$search = array(' - <', '> - ', '(', ')'); $replace = array(' <', '> ', '', '');
That should be it!
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.