Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
565 views
in Q2A Core by
how can I make the type of question, for example 
 
{type} Subject of question
 
[Free] How I Can....
 
or
[Paid] How I Can....
Q2A version: 1.6.1

1 Answer

0 votes
by

Your question is a little unclear but I assume you are using categories as the question "type".

In a custom theme, you can make the title show the category quite easily. Override the title() function like this:

function title()
{
    $this->content['title'] = '[' . $this->content['qview']['raw']['categoryname'] . ']' . $this->content['title'];
    parent::title();
}
 
(See the docs for details on custom themes.)
by
I mean prefix issue
by
edited by
I want to add a prefix to the issues, please help

for example

[Paid question] Question subject

or

[Free] Question subject
...