Looking for exactly the same thing!
I’m looking for the same feature hope the developper can do something about it in the next update
Also interested in this feature.
Thank for your suggestion! I was added this feature into product roadmap and it will be added into DW Question & Answer 1.4.1.
Regards,
Jackie from DesignWall
After having upgraded to 1.4.1, I now see the possibility to enter a name, when not logged in.
Problem: The name doesn’t show up instead of “Anonymous”, when viewing the question.
This issue has been fixed on DW Question & Answer 1.4.2
Thread Starter
setjo
(@setjo)
can I upgrade to latest version to fix this issue but I afraid that upgrading can disturb website alignment
Did you modified any template or css file? What version of DW Question & Answer are you using?
Thread Starter
setjo
(@setjo)
I am using Version 1.3.3 and yes I did some modification in the css file. Shall I upgrade to the latest version of DW question and answer
Can you give me your website URL for further checking?
Thread Starter
setjo
(@setjo)
my site url is mercedesbenztechs.com
Thread Starter
setjo
(@setjo)
I have upgraded the version to latest one but while submitting the questions all fields are not marked as mandatory, I mean if user does not enter capcha or email then also question is posted Why is it so?
Hi,
you can open file wp-content/plugins/dwqa-question-answer/inc/Handle.php and add following code under line 293:
if ( !$category ) {
dwqa_add_notice( __( 'You must choose category.', 'dwqa' ), 'error' );
return false;
}
if ( !is_user_logged_in() && empty( $_POST['_dwqa_anonymous_email'] ) && !is_email( $_POST['_dwqa_anonymous_email'] ) ) {
dwqa_add_notice( __( 'You must enter a valid email.' ), 'error' );
return false;
}
if ( !is_user_logged_in() && empty( $_POST['_dwqa_anonymous_name'] ) && !is_email( $_POST['_dwqa_anonymous_name'] ) ) {
dwqa_add_notice( __( 'You must enter your name.' ), 'error' );
return false;
}
if ( !$tags ) {
dwqa_add_notice( __( 'You must type tags.', 'dwqa' ), 'error' );
return false;
}
if ( !$content ) {
dwqa_add_notice( __( 'You must type detail question.', 'dwqa' ), 'error' );
return false;
}
Regards,
Dominic from DesignWall Team.