New option: Show content in lists

AnsPress allow template override, have a look at docs.

Problems with translations

Hola, para la primera imagen donde estan los campos “category” y “select a topic that bestfits your question” para traducirlos entra a esta ruta “/wp-content/plugins/categories-for-anspress” y abre el archivo categories-for-anspress.php y en la linea 450 esta este texto: ‘label’ => __( ‘Category’, ‘categories-for-anspress’ ), cambialo por este: ‘label’ => __( ‘Categoria’, ‘categories-for-anspress’ ), y mas abajo en la linea 455 esta este texto: ‘desc’ => __( ‘Select a topic that best fits your question’, ‘categories-for-anspress’ ), cambialo por este: ‘desc’ => __( ‘Selecciona una categoria para tu pregunta’, ‘categories-for-anspress’ ), Ahora en la segunda imagen donde dice “1 Question” entra a la siguiente ruta “/wp-content/plugins/categories-for-anspress/theme” y abre los archivos categories.php y category.php AHORA en el archivo categories.php ve a la linea 26 y esta este texto: <?php printf(_n(‘%d Question’, ‘%d Questions’, ‘categories-for-anspress’, $category->count), $category->count) ?> cambialo por este: <?php printf(_n(‘%d Pregunta’, ‘%d Preguntas’, ‘categories-for-anspress’, $category->count), $category->count) ?> Y por ultimo en el archivo category.php ve a la linea 14 y estara este texto: <?php printf( _n(‘1 Question’, ‘%s Questions’, $question_category->count, ‘categories-for-anspress’), $question_category->count); ?> cambialo por este: <?php printf( _n(‘1 Pregunta’, ‘%s Preguntas’, $question_category->count, ‘categories-for-anspress’), $question_category->count); ?> Los campos de etiquetas no los tengo lo siento Y todos los demás campos ya están traducidos ve a este enlace: https://translate.wordpress.org/projects/wp-plugins/anspress-question-answer/dev/es/default una vez ahí ve hasta abajo y ahí hay unas opciones donde dice “Export: all current as” “Portable Object Message Catalog (.po/.pot)” por default te sale eso le das donde dice “Export” y te descargara un archivo con extensión .po ahora donde dice “Portable Object Message Catalog (.po/.pot)” haz clic y te […]

Is there any places for Ads?

You could probably add them in yourself, but it will require some basic code editing. Go to your /wordpress/wp-content/plugins/anspress-question-answer/theme/default/ folder and find the relevant theme file. Then copy that file including the folder structure to your /wordpress/wp-content/themes/your-theme/anspress/ folder. This is so that you don’t overwrite these files when the plugin updates. So for example, if you want to place an advertisement on the user profile page, you copy: /wordpress/wp-content/plugins/anspress-question-answer/theme/default/user/user.php to /wordpress/wp-content/themes/your-theme/anspress/user/user.php And add the advertisement code in that file.

Placing widgets in the single question sidebar

There is a widget position called “Question sidebar”. Add your things here.

voting your own post

Thanks. Its not bug but new functionality. Now admin can vote on their own posts (only admin). Also admin can add any numbers of vote for a post from wp-admin.

New Questions are not open

go to options->moderate and uncheck akismet.