DesignWall
Forum Replies Created
-
Forum: Plugins
In reply to: [DW Question & Answer] email notification of the responseHi,
We have checked on our demo and it works fine. To email notification, you need to configure SMTP.
Regards,- This reply was modified 8 years, 7 months ago by DesignWall.
Forum: Plugins
In reply to: [DW Question & Answer] User RolesHi,
You can enable the Post option for all anonymous role.
Regards,Forum: Plugins
In reply to: [DW Question & Answer] Moderate AnswersHi,
You can edit the following code in line 95 of the Handle.php file look like the following demo:
http://snippi.com/s/m9c884k
Then add the following code to the functions.php file:add_filter( 'dwqa_insert_answer_args', 'dwqa_theme_moderate_answer' ); function dwqa_theme_moderate_answer( $args ) { $args['post_status'] = 'pending'; return $args; }Regards,
DesignWall TeamHi,
We have checked and it’s some mistake with the plugin, we have lost some the files when updating the plugin. We have changed the package, you can download and test the plugin now.
Regards,
DesignWall Team.Forum: Plugins
In reply to: [DW Question & Answer] How to remove comment section from question?Sorry about that, I have mistaken. Please use the following code:
.dwqa-single-question .dwqa-question-item .dwqa-comments { display: none; }Forum: Plugins
In reply to: [DW Question & Answer] How to remove comment section from question?Hi,
You can use the following code:.dwqa-single-question .dwqa-comments { display: none; }Regards,
DesignWall Team.Forum: Plugins
In reply to: [DW Question & Answer] Deactivate PluginHi,
In this case, you can use the FTP to remove the plugin, I think it’s the conflict between the plugins.
Regards,
DesignWall Team.Forum: Plugins
In reply to: [DW Question & Answer] How to setup member registration/login ?Hi,
At the moment, the plugin using the registration/login default of the WordPress. you can configure the permission of the user role and enable the anyone can register in the Dashboard > Settings > General setting.
Also, if you want to use another plugin for registration/login, you can create your registration/login page and change the link in the template files of the plugin.
go to plugins/dw-question-answer/templates/ folder.Regards,
DesignWall Team.Forum: Plugins
In reply to: [DW Question & Answer] Deactivate PluginHi,
In this case, you can use the FTP to remove the plugin, I think it’s the conflict between the plugins.
Regards,
DesignWall Team.Hi,
To resolve this issue, you can create a folder in your folder theme with named “dwqa-templates” then go to the plugins/dw-question-answer/templates folder.
Copy the archive-question-filter.php file and paste into the “dwqa-templates”
And now, you can remove the status that you want to hide on the question list.Regards,
DesignWall Team.Forum: Plugins
In reply to: [DW Question & Answer] Help meHi,
1/ Please let me know detail about this question, you can send me a screenshot for further checking.2/ At the moment, the plugin does not support an option to make a ban on the writing of references in the question and answer. I think you can create a paragraph about this issue on the page.
Regards,
DesignWall Team.Forum: Plugins
In reply to: [DW Question & Answer] Word Style In “Edge” ProblemHi,
Please accept my apology for the delay in getting back to you.
very hard to check this issue, I think it’s issue come from the Edge browser. In this case, you can send me your site for further checking.
Regards,Forum: Plugins
In reply to: [DW Question & Answer] W3 Cache Problem with this PluginHi,
The steps to do this are quite easy (for W3 Total Cache at least). You do need to include the full path the resource, relative resources do not work at time of writingFrom your WordPress dashboard, Go to ‘Performance’ and then go to ‘Minify‘.
Remove all from the following field: ‘Include external files/libaries’
Find the ‘Never minify the following JS files’ field Enter the following files
wp-includes/js/jquery/jquery.jswp-includes/js/jquery/jquery-migrate.min.js
wp-content/plugins/dw-question-answer/…
In the ‘Never minify the following CSS files’ add the following file
wp-content/plugins/dw-question-answer/assets/css/…If you host WordPress on a subdomain, make sure that you prefix these files with the path to your installation (for example, ‘wordpress/‘), else remove it
Regards,
DesingWall Team.Forum: Plugins
In reply to: [DW Question & Answer] show questions from specific category/tag in a postHi,
I have some mistake in your previous question. At the moment, the plugin does not support to mark a specific answer as private for only members can see it.
The private option just allows the Administrator can see it.Regards,
DesignWall Team.Forum: Plugins
In reply to: [DW Question & Answer] 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.