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

HI

how to custom "qa-q-item-avatar-meta" container in index page , I just want to show the catergory of post

Q2A version: last
by
I don't know if I understood it correctly. But basically you want to remove everything from the "qa-q-item-avatar-meta" and keep only the Category. right?
by
Yes that's what I mean

1 Answer

+1 vote
by

These can be done from the translation files. So follow these steps:

 1. Learn how to translate from this link: https://docs.question2answer.org/translate

 2. Define whether you are going to update an existing translation or just customize these particular phrases

 3. Create/Update file qa-lang-main.php and add/edit these translation strings:

'in_category_x' => '^',
'meta_order' => '^where',

This will result in posts only showing the category they belong to.

Note: All these steps apply to the whole system, not just question lists. If you want a different behavior for question lists and for the question view page, then you will have to write a plugin for that.

by
I don't want to translate
What I want is to remove the history and the writer
by
Your comment states you want to remove the WHAT and WHO. In your question you stated you wanted to only keep the WHERE. This contradicts the WHEN. If you only want to keep the WHERE, you have to remove the WHEN.

Aside from that, what you are asking for (in the question) can be achieved by following the steps I showed you about translating. If you don't *want to translate* I think you should provide a solid explanation on why you don't *want* to do so
...