sword024
asked 2 years ago

Hi there,
How I can setup to the non logged in users to see the answers? As yo can see https://prnt.sc/i515FIo2Ht2h no answers are showing up…

2 Answers
DominicStaff
answered 2 years ago

About the move all to right,

You can use the following code:

.dwqa-answer-form-title { text-align: right; }

.dwqa-answer-form form p br {
  display: none;
}
.dwqa-answer-form form p .dwqa-btn {
  margin-right: 0;
}
DominicStaff
answered 2 years ago

About the place question page: At the moment, the plugin does not support this option. However, you can custom the wp-content/dw-question-answer-pro/inc/Permission.php file and then find line 375
Replace this code: return false;
With the following code:

        header("Location: http://example.com/");
        /* Make sure that code below does not get executed when we redirect. */
        exit;

Note: You can create a page to show your notice.

Powered by DW Question & Answer Pro