Hello,
we are using the plugin and are very satisfied with it. However, there are three issues we would like to resolve:
- We have two editors, and we do not understand why, or are 1 for Comments and one for Answers? If yes, how can we disable comments?
- We would like to disable user profiles (there is an Link in the Name of the User in each Question). Could you please provide us with a PHP code snippet for this?
- We would like to disable anonymous submissions. Could you also provide us with the corresponding PHP code?
2 Answers
Hi,
1/ Could you give me the admin account for further checking?
2/ You add the following CSS code to the Dashboard > Appearance > Customize > Aditional CSS:
Then create the emqa-templates/styles/style-name folder in your wp-content/themes/your-theme folder and copy/paste the content-question.php, content-single-question.php, content-single-answer.php and content-comment.php files from the
wp-content/plugins/emo-questalk-pro/templates/styles/default folder into the emqa-templates/styles/style-name
Now, you can open the files to edit and remove the user link.
3/ If you want to disable anonymous submissions, you can go to the Dashboard > Questions > Settings > Permission tab, then uncheck the anonymous role.
1/ Could you give me the admin account for further checking?
2/ You add the following CSS code to the Dashboard > Appearance > Customize > Aditional CSS:
.emqa-answer-item .emqa-answer-meta a, .emqa-question-item .emqa-question-meta a, .emqa-comments-list .emqa-comment-meta a {
cursor: none;
pointer-events: none;
}
Then create the emqa-templates/styles/style-name folder in your wp-content/themes/your-theme folder and copy/paste the content-question.php, content-single-question.php, content-single-answer.php and content-comment.php files from the
wp-content/plugins/emo-questalk-pro/templates/styles/default folder into the emqa-templates/styles/style-name
Now, you can open the files to edit and remove the user link.
3/ If you want to disable anonymous submissions, you can go to the Dashboard > Questions > Settings > Permission tab, then uncheck the anonymous role.
Please login or Register to submit your answer