DesignWall
Forum Replies Created
-
Forum: Plugins
In reply to: [DW Question & Answer] Enhance Plugin Search to include comments and answersHi mate,
Currently, we dont have any plan to update this feature into our plugin. Yet if you want to add it to your website, DesignWall can help you as a custom work.Forum: Plugins
In reply to: [DW Question & Answer] How to translate into russian “Comment” on answer pageYou can copy code in the following link: http://snippi.com/s/04izl65
Note: Please click the Raw button under the code section box.Forum: Plugins
In reply to: [DW Question & Answer] How to add tags with ENTER or write a prompt in formIn this case, you only can use the following code and write prompt in form by edit the string in the placeholder
<input type="text" class="dwqa-question-tags" name="question-tag" value="<?php echo $tags ?>" placeholder="Your string" >
Or use the HTML code to add the Note under the Tags feild.Forum: Plugins
In reply to: [DW Question & Answer] How to delete visibility point?Please send me your site URL for further checking.
Forum: Plugins
In reply to: [DW Question & Answer] How to resize comment windowI have not the permission to read the comment box. In this case, you can add the following code to the style.css file:
.dwqa-comment-form .comment-form textarea { height: 40px !important; }Forum: Plugins
In reply to: [DW Question & Answer] Enhance Plugin Search to include comments and answersI know what you want. However, the plugin does not support to Enhance Plugin Search to include comments and answers as you mentioned here.
Forum: Plugins
In reply to: [DW Question & Answer] How to translate into russian “Comment” on answer pageI have checked on our demo and it works fine, you can send me the code in your file. I will check it.
Forum: Plugins
In reply to: [DW Question & Answer] How to add tags with ENTER or write a prompt in formYou can open the question-submit-form.php file in the templates folder and find the line 59.
<input type="text" class="dwqa-question-tags" name="question-tag" value="<?php echo $tags ?>" placeholder="Your string" >You can write a prompt in a placeholder.
Forum: Plugins
In reply to: [DW Question & Answer] How to delete visibility point?You can add the following code to the style.css file of your theme.
.dwqa-answer-form .dwqa-select { display: none; }Forum: Plugins
In reply to: [DW Question & Answer] How to resize comment windowPlease send me your site URL, I will check and help you resolve it.
Forum: Plugins
In reply to: [DW Question & Answer] FiltringI know what you want. However, the plugin does not support the filter shortcode.
Forum: Plugins
In reply to: [DW Question & Answer] Can URL survey slug be changed?Yes, you can change the name/slug of the question from the backend > Questions
Forum: Plugins
In reply to: [DW Question & Answer] How to translate into russian “Comment” on answer pageyou can open the answer-submit-form.php file then find the line 16.
Replace with the following code:
<?php dwqa_init_tinymce_editor( array( 'content' => $content, 'textarea_name' => 'answer-content', 'placeholder' => 'your string', 'id' => 'dwqa-answer-content' ) ) ?>Forum: Plugins
In reply to: [DW Question & Answer] How to delete “anonymouse submit”Just disable the post column. I have checked on our demo and it works fine.
https://www.dropbox.com/s/eywt2kw8906vhm0/screencapture-localhost-8888-dw-purity-wp-admin-edit-php-1490329360782.png?dl=0Forum: Plugins
In reply to: [DW Question & Answer] 3 Problem with the Plugin1/ you can add the following code to your footer.php file. before the </body> tag.
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script> $(function() { $('.dwqa-container a[href]').attr('target', '_blank'); }); </script>2/ you can add the following code to the style.css file:
@media (max-width: 480px) { .dwqa-single-question .wp-embed { width: 50%; } }3/ I think it’s some issue come from the cache site or conflict the plugin.
4/ It’s default of the plugin when you select the best answer it will refresh not vote answer.