DesignWall
Forum Replies Created
-
Forum: Plugins
In reply to: [DW Question & Answer] Single Question TempleHi mate, thank you for your question. Please follow these steps:
Step 1: copy/ paste the following code to your functions.php file
http://snippi.com/s/do35pkaStep 2:
creating a php file for your custom template. This file will be used for your custom template. You can name this file anything you want. In this example we will name it customsingle.php. Don’t worry about the content of this file. You can copy the codes from your normal single.php of your template. Put this new file on your theme directory.Step 3:
add a special comment on your new fileYou can edit anything on your new file, such as removing the sidebar section or anything. But, in order to get your file work you need to add the following comment right after the php opening tag. Here is the code.
<?php
/**
* Template Name: [Custom single template name]
*
* Template Description…
**/
?>Forum: Plugins
In reply to: [DW Question & Answer] Content of question listed page is goneHi mate,
It’s really hard to sort out the problems without getting access to the dashboard. In this case, you can remove current question list page and create a new page and add the following shortcode to it:
[dwqa-list-questions]
If there are any more problems, kindly let us know.
Forum: Plugins
In reply to: [DW Question & Answer] Sort By ButtonsHi mate, thank you for writing in.
The image you saw is from the old version of the plugin. This option has been changed in the latest version so you cannot use the filter as markup in the guide.
Feel free to reach out for further assistance.Forum: Plugins
In reply to: [DW Question & Answer] How to remove views?You can add the following code to the style.css file:
span.dwqa-views-count {
display: none !important;
}If you want to remove the Views option in the Sort by filter box, you can open the archive-question-filter.php file in the templates folder of the plugin then remove the line 33
Forum: Plugins
In reply to: [DW Question & Answer] How can I get the email of unregistered authorHi mate,
Currently, it’s impossible to get the email of anonymous users from DW Q&A as well as WordPress. Sorry for this inconvenience.
If you need further assistance, please let us know.
Forum: Plugins
In reply to: [DW Question & Answer] How can I export all Question and answersHi,
You can use the export and import options of WordPress in Dashboard > Tools. If you want to search an export plugin, there currently are many plugins allow you to export content.
Feel free to reach out for further questions.Hi,
I know what you want. This is an issue coming from the plugin. Our technical team are trying to fix the issues and improve the plugin in the later version.
If you have more comments, don’t hesitate to let us know.Forum: Plugins
In reply to: [DW Question & Answer] Disable commentsTo disable the comment section of the plugin, you can add the following code to the style.css file:
.dwqa-comments { display: none; }Or open the content-single-question.php file and content-single-answer.php file remove the following code:
<?php comments_template(); ?>
Regards,Forum: Plugins
In reply to: [DW Question & Answer] Staff labelHi mate. Staff labels do not display to subscriber user. These labels only display with admin. However if you want to remove these labels, please add this code to style.css file of your theme: .dwqa-staff { display: none; }
Feel free to ask for other questions.Hi mate,
Thank you for your question. We guess that the problems may come from other plugins that conflict with DW Q&A. In this case, please disable all other plugins and have a check. If the problem still appears, please send us your URL for further checking.
Feel free to ask for other questions.
Forum: Plugins
In reply to: [DW Question & Answer] Category dropdownHi mate,
Thank you for getting in touch with DesignWall team. We are afraid that the latest version of our plugin does not allow categories dropdown as you mentioned. If you use Pro version, you can use the widget categories to do that.
Please let us know if you upgrade to the pro version so that your technical team will help you customize the plugin.
Feel free to reach out for further questions.Forum: Plugins
In reply to: [DW Question & Answer] Category and Topic sidebarHi mate,
Thank you for getting in touch with DesignWall team.
You can go to DW Q&A extensions from Dashboard > Questions > Extension
to install and use widgets. After installing you can add those widgets to your sidebar.
I highly recommend you to use DW Q&A Pro to get access to the full package of widget/extension of the plugin.
Feel free to reach out for further questions.Forum: Plugins
In reply to: [DW Question & Answer] Exclude from searchHi mate,
Thank you for getting in touch with DesignWall.
Have you updated DW Q&A to the latest version? We have fixed it in the latest one.
Please update and if the issue still happens, kindly let us know for further assistance.
Forum: Plugins
In reply to: [DW Question & Answer] Shortcode for 1 topic/category onlyHi mate,
Sorry for my late reply.
I have checked your issue and I understand what you want. However, our plugins only accept shortcode use and show the questions in a specific category and not allow to create a new question site for each type as mentioned. However this it a good idea, we will consider to add it in new version.
Also, our plugin is compatible with BuddyPress. You can have a look at https://www.designwall.com/guide/dw-question-answer-plugin/buddypress-integration/If you have more questions, don’t hesitate to contact us.
Forum: Plugins
In reply to: [DW Question & Answer] How to remove questions categoryHi mate, sorry for my late reply.
I have checked your site and see that this is breadcrumbs from your site. I this case, I think you can add the following code.
.singular-dwqa-question nav.breadcrumb-trail.breadcrumbs {
display: none;
}
Also, you can install the following plugin to add/edit css code: https://wordpress.org/plugins/simple-custom-css/
Hope this helps!