mention issue with buddypress

2.75K viewsIssues
1

Hi, I have just updated plugin with 3.0 version.

  1. On mention a user in answer and question section, it returns anspress profile url even buddypress is active.

 

2. On mention a user in comment section, it returns correct buddypress profile url, but it displayed anchor tag html.

 

 

@rahularyan

My other question is that, I have asked question about design issue on reputation page on buddypress profile page.

Questions

I have found the solution of it.

At file    anspress-question-answer\includes\functions.php

In the function is_anspress()  at line number 164.

if ( 'questions' == $bp_com || 'answers' == $bp_com ) {
       return true;
}

Here in this if condition you have checked the ‘questions’ and ‘answers’ section only. Here need to check ‘reputation’ also.

So this is must be modified with below code.

if ( 'questions' == $bp_com || 'answers' == $bp_com || 'reputation' == $bp_com ) {
          return true;
}

After this design issue on reputation section in buddypress profile will be solved.

edited question