DesignWall
Forum Replies Created
-
Forum: Plugins
In reply to: [DW Question & Answer] Making Links DofollowHi,
In your case, you can use the following plugin to resolve this issue: https://wordpress.org/plugins/nofollow-for-external-link/
Regards,
DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] Login Form disabledYou can open the answer.php file in the templates folder of dw-question-answer then add the following code to the line 26:
<?php elseif ( ! is_user_logged_in() ) : ?> <div class="alert"><?php _e( 'You do not have permission to submit a question','dwqa' ) ?></div> <div class="dwqa-answers-login"> <div class="dwqa-answers-login-title"> <p><?php printf( __( 'Please login or %1$sRegister%2$s to submit your answer', 'dwqa' ), '<a href="'.$link_register.'">', '</a>' ) ?></p> </div> <div class="dwqa-answers-login-content"> <?php wp_login_form(); ?> <?php do_action( 'wordpress_social_login' ); ?> </div> </div>See the screenshot: http://prntscr.com/inwkhf
Forum: Plugins
In reply to: [DW Question & Answer] Roles and RestrictionsHi,
At the moment, the plugin does not support to set roles such that only certain users can answer questions. The plugin allows set permission for user roles.Regards,
DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] Don’t redirect to question after submitHi,
Firstly, you can make the Q&A auto-redirect to another page after submitting a question.– You can open the Handle.php file find the line 482.
dwqa_add_notice( __( 'Your question is waiting moderator.', 'dwqa' ), 'success' );
Then replace with the following code to redirect to home page:
exit( wp_safe_redirect( home_url() ) );Notice: you can use similar to redirect user to any other page as you wish (in your case to the question listing page)
Eg: like this is my url : http://mysite/discussion-forum/
exit( wp_safe_redirect( home_url() .'/discussion-forum/' ) );– You can add the content to this page.
Regards,
DesignWall Team.Forum: Plugins
In reply to: [DW Question & Answer] Improve translatingHi,
Thank for your help! We have sent and notified to our technical team about this issue, we will check and update it in the next version.
Regards,
DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] PHP 7.2 update issueHi,
We are checking this issue on our local host, we will fix it as soon as possible.
Regards,
DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] Attach fileHi,
At the moment, the Free version does not support to add a file to the Question or answer. However, we have included this option to the Pro version. If you want to have it, you can update the free version to pro version.
Regards,
DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] Compatable with WPMLHi,
At the moment, the plugin does not Compatible with WPML. We are contacting with the author of WPML to discuss about this plugin to compatible with the Q&A plugin.
Regards,
DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] Can’t send questions through the formPlease disable all the plugins to check this issue, I think the Q&A conflicting with another plugin from your site.
Regards,
DesignWall TeamForum: Plugins
In reply to: [DW Question & Answer] Multilingual SiteAt the moment, the plugin works fine with the Multilingual Site. We have used Multilingual Site to install our demo.
The plugin does not compatible with the Disqus Comments. However, the user can post as in guest accounts.
If you want to activity/ information of the user, you can install the BuddyPress plugin, we have customized to make the Q&A compatible with the BuddyPress plugin.
Regards,
DesignWall Team.Forum: Plugins
In reply to: [DW Question & Answer] different staff label for admin and editorsAt the moment, the plugin does not support to add/ change Staff label for different users
Regards,
DesignWall team.Forum: Plugins
In reply to: [DW Question & Answer] 403 ForbiddenHi,
You can go to the Dashboard > Settings > Permalink then click save button. If you still face their issue, you can let me know.
Regards,Forum: Plugins
In reply to: [DW Question & Answer] Alphabet category drop down?You can open the question-submit-form.php file then add the following code on line 38.
‘order’ => ‘ASC’,Regards,
DesignWall Team.Forum: Plugins
In reply to: [DW Question & Answer] Delete a few thingsTo remove this fields, you can open the submit-question-form.php in the template folder to remove it.
Regards,
DesignWall Team.Forum: Plugins
In reply to: [DW Question & Answer] Questions are not sent via the formIf you still face their issue, you can send me a screenshot about your Q&A Setting page for further checking.