DesignWall
Forum Replies Created
-
Forum: Plugins
In reply to: [DW Question & Answer] Suggested improvement: answer redirectionHi,
Thank you for interesting in our product and your feedback. We appreciate it.
I sent and notified our technical team about this problem. We will check and discuss it.
Any your suggestion will make our product become better and better.
Regards,
Dominic from DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] Correct singular or plural for number of answersHi,
Thank you for interesting in our product and your feedback. We appreciate it.
I sent and notified our technical team about this problem. We will check and discuss it.
Any your suggestion will make our product become better and better.
Regards,
Dominic from DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] where are the emails?Hi,
At the moment, you can find the username & email of the anonymous user in your dashboard. The plugin does not store in there. In this case, can use the query to get the email and info of the anonymous. However, I think we will discuss it in the next version.
Regards,
Dominic from DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] How to get rid of notificationHi,
You can open wp-content/plugins/dw-question-answer/inc/Admin/Welcome.php and remove line 8add_action( 'admin_notices', array( $this, 'admin_notices' ) );Regards,
Dominic from DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] Questions about functionalitiesHi,
Yes, our plugin can do it, Why not :), you can download and install it now on your site and check it.
Regards,
Dominic from DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] error 404Hi,
I have checked your site and see that it still works fine, after changing the permalink, you should go to the page with the following link:
http://parlonscopropriete.fr/?page_id=339
http://parlonscopropriete.fr/?dwqa-question=mon-immeuble-est-il-en-copropriete-2
Please let me know the detail If my answer does not resolve your question.Regards,
Dominic from DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] can not echo keywordsHi,
In your case, you can use the Yoast Seo plugin to resolve this issue, you can find the plugin here: https://wordpress.org/plugins/wordpress-seo/Regards,
Dominic from DessignWall team.Forum: Plugins
In reply to: [DW Question & Answer] Second QuestionHi,
Please let me know detail about it, you can send me your site URL for further checking.Yes, you can resolve this issue with the solution in the previous answer. We will update this issue in the next version of the plugin.
Hi,
To resolve the time issue in your site you can do the following solution:
About list question page, you can open the content-question.php file, find line 17.
Replace it with the following code:$time = human_time_diff( get_post_time( 'U' ), current_time('timestamp'));you can open the content-single-question.php file and find the line 19.
Replace the following code:<?php printf( __( '<span>%s%s %s asked %s ago</span>', 'dwqa' ), dwqa_get_author_link( $user_id ), get_avatar( $user_id, 48 ), dwqa_get_author(), dwqa_print_user_badge( $user_id ), human_time_diff( get_post_time( 'U' ) ) ) ?>With new code:
<?php printf( __( '<span>%s%s %s asked %s ago</span>', 'dwqa' ), dwqa_get_author_link( $user_id ), get_avatar( $user_id, 48 ), dwqa_get_author(), dwqa_print_user_badge( $user_id ), human_time_diff( get_post_time( 'U' ), current_time('timestamp') ) ) ?>Regards,
Dominic from DesignWall Team.Forum: Plugins
In reply to: [DW Question & Answer] How i can have questions/answers for every post?Hi,
If you want to display the question list or submit question form on all the posts, you can add the shortcode of the plugin to the signle.php file of your site.Regards,
Dominic from DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] BugHi Darek,
Hope you found your issue and resolved it. If you have any issue or still face their issue, you can send me your site URL fỏ further checking.
Regards,Forum: Plugins
In reply to: [DW Question & Answer] Ads and Content SharingHi,
Please send me your site URL for further checking. I will check and help you remove Ads from Q&A page.Regards,
Dominic from DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] you must type tags loopYou can copy the following code and replace all the code line in your Handle.php file:
URL: http://snippi.com/s/jtlchya
About the issue3, you can send me your site and some screenshot for further checking, you can let me know detail about it, I’m still vague and not clear.Forum: Plugins
In reply to: [DW Question & Answer] you must type tags loopHi,
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; }To add the description, you can open the submit-question-form.php file and fine the line 49, replace with the following code:
<input type="text" class="" name="question-tag" value="<?php echo $tags ?>" placeholder="Your descriptions" >Regards,
Dominic from DesignWall Team.