What is the Categories page supposed to look like?

 

I found a shortcode [anspress page=categories] , but it only shows the questions.

(I think all shortcodes should be shown in the settings somewhere by the way)

I prefer “following” to be for that and not for following of other profiles.

Suggestion. Expected My Voted Questions and My Voted Ansers to be tabs on the My Questions and My Answers page.

When asking a question, the tags spinner spins, but the tags are now shown.

However, the Categories link in the main menu now shows http://anspress_page_url_categories/ and obviously doesn’t open the Categories end-point.

I have created a page and named it “home”. And then I pasted [anspress] in it. And then made is a homepage. But the search form and the ask questions options along with whole page css isn’t working .

Anspress uses a shortcode in WordPress->Dashboard->Pages. It contains all of the “sub-pages” to Anspress, like the question list, the page to ask, user rep, etc…I want to add a page to this list so that my page gets the look and feel of Anspress. How do I add the page to be included by the [anspress] shortcode?

My profile on here allows me to upland a background and avatar. Is that a different plugin from Anspress? My Anspress doesn’t show the upland icon. 

It’s narrow in every theme.

I’ve added comments here but will have to ask this question again. I have Multisite if that’s hindering anything.

Still requires log in to ask even though this requirement is turned off. [Solved]

Not all providers in WordPress Social Login (officially recommended for AnsPress) return proper data. For vk.com provider (russian facebook) it was returning user id as “display name”.

This display name issue can be fixed with simple snippet:

add_action('user_register','d_change_display_name');
function d_change_display_name( $user_id ) {
    $info = get_userdata( $user_id );
	$args = array(
		'ID' => $user_id,
		'display_name' => $info->first_name . ' ' . $info->last_name
	);
    wp_update_user( $args );
}