DesignWall
Forum Replies Created
-
Forum: Plugins
In reply to: [DW Question & Answer] Disable question suggestionHi,
If you want to hide this feature, you can add the following code to the style.css file:.dwqa-search .dwqa-autocomplete { display: none !important; }In case, you want to remove, you need remove from the code of the plugin file.
I think you can use the CSS code to resolve this issue.
Regards,Forum: Plugins
In reply to: [DW Question & Answer] How to ask anonymous questionsSorry about that, my mistake. I mean, the anonymous and email won’t save in the back-end, it just shows the name on the front end. Also, this section working fine. Hope you understand what I mean, my friend.
Forum: Plugins
In reply to: [DW Question & Answer] Show anonymous and registered user emailsHi @nonbrake!
We have checked on our localhost and you need to customize the plugin to show the email on the front-end. If you want to have it, we are ready to help you as a custom work with a charge of fee.
In case that you are still interested in the feature, you can contact me via email: hi@designwall.comForum: Plugins
In reply to: [DW Question & Answer] How to ask anonymous questionsAt the moment, this option only allow Anonymous submit the question and they need to use the Name and email to submit a question and the Name, email won’t save in the database or back-end.
In this case, if you want to show the anonymous when a user submits question or for the logged user can select Anonymous, you need to customize the plugin. we are ready to help you as a custom work with a charge of fee (about $70).
In case that you are still interested in the feature, please kindly let us know, we will check and estimate the time, you can contact me via email: hi@designwall.comForum: Plugins
In reply to: [DW Question & Answer] How to ask anonymous questionsYou can log into Dashboard > Question > Settings > Permission and allow the Anonymous can submit questions, answers, comments.
Forum: Plugins
In reply to: [DW Question & Answer] How to remove Category and TagsTo remove the category and tags fields from the submit question form, you can open the question-submit-form.php file in the templates folder of the plugin and find the code of the 2 fields and remove it.
Forum: Plugins
In reply to: [DW Question & Answer] Answer to own questionAt the moment, the plugin does not support this feature, If you want to have it, you need to customize the plugin and it’s very hard and needs time to check and create the option.
In this case, we are ready to help you as a custom work with a charge of fee.
In case that you are still interested in the feature, you can contact me via email: hi@designwall.comForum: Plugins
In reply to: [DW Question & Answer] Show anonymous and registered user emailsHi,
I sent and notified to our technical team, we will check and try to custom thí option, we will find the best solution. We will provide the solution for you as soon as possible if it works fine.
Regards,Forum: Plugins
In reply to: [DW Question & Answer] Show anonymous and registered user emailsHi,
We have checked the plugin, at the moment, the plugin does not support to show the anonymous and registered user emails on the front-end as you mentioned here, If you want to show the email, you need to customize the plugin.
Regards,Forum: Plugins
In reply to: [DW Question & Answer] Default question status to closedHi,
Please accept my apology for the delay in getting back to you. At the moment, the plugin does not support this feature, I sent and notified to our technical team about this question, we will check and discuss about it. We will let you know as soon as possible. Maybe, will need to customize the plugin and in that case, we will send you the codes to resolve this issue.
Regards,Forum: Plugins
In reply to: [DW Question & Answer] Preventing commentsYou can open the content-single-question.php and content-single-answer.php file in the templates folder and remove the following code:
<?php comments_template(); ?>
It’s all the option to help you remove the comment box.
Hope this helps!Forum: Plugins
In reply to: [DW Question & Answer] Preventing commentsHi,
You can add the following code to the style.css file:
.dwqa-comments {
display: none;
}
Forum: Plugins
In reply to: [DW Question & Answer] Repeating mistakesHi,
At the moment, we have not the plan to update the plugin. we having some project and trying to finish the project as soon as possible to come back work with the Q&A. I sent and notified to our technical team about your feedback, we will discuss about it in the next version. we will notice when having a new version.
Regards,Forum: Plugins
In reply to: [DW Question & Answer] Sort by Answers issueHi,
Please let me know detail about your question. The Q&A have not the option to Sort by Answers issue.
you can send me your site URL and some screenshot for further checking.
Regards,Forum: Plugins
In reply to: [DW Question & Answer] custom sidebar on single question pageHi,
In this case, you can add the following code to the functions.php file:/**
* Register our sidebars and widgetized areas in question page.
*
*/
function wpb_widgets_init() {
register_sidebar( array(
‘name’ => __( ‘Question single sidebar’, ‘wpb’ ),
‘id’ => ‘single-sidebar’,
‘description’ => __( ‘Show widget into Single question’, ‘wpb’ ),
‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</aside>’,
‘before_title’ => ‘<h3 class=”widget-title”>’,
‘after_title’ => ‘</h3>’,
) );
}
add_action( ‘widgets_init’, ‘wpb_widgets_init’ );
Then add the following code to the single-question.php file under line 21:<div class=””>
<?php dynamic_sidebar( ‘single-sidebar’ ); ?>
</div>