DesignWall
Forum Replies Created
-
Hi mate,
We have checked your site many times but it turned out to redirect us to 404 page. Please have a look at let me know whenever it works again.
Forum: Plugins
In reply to: [DW Question & Answer] Plugin conflict with my themeAt the moment the plugin has an individual template and you only use layout option for question list page and question submit page. As to others pages of DW Q&A such as single, archive, you cannot apply this feature.
Forum: Plugins
In reply to: [DW Question & Answer] Questions are not visibleYou need to go to backend > Dashboard > Question > All Question then click quick edit button under the title and select publish. If you don’t want the questions to be in pending, you can disable the pending feature in Questions > Settings > Moderate question after submitting.
Forum: Plugins
In reply to: [DW Question & Answer] How can user register and create an own account?Hi Niclas,
You can solve these problems by configuring permission in the Dashboard > Questions > Setting > Permission tabs.
IF you need further assistance, feel free to reach out.
Forum: Plugins
In reply to: [DW Question & Answer] Plugin conflict with my themeHi mate,
Can you please send us your site URL or some the screenshots for further checking?
Forum: Plugins
In reply to: [DW Question & Answer] Comments sortHi mate, currently The plugin does not support to sort comments after answer. We will take this into consideration to add the feature in next versions.
If you have more questions, kindly let us know.Forum: Plugins
In reply to: [DW Question & Answer] Search Tags or Full Text of AnswersAt the moment you can only turn the status to “closed” to hide the answer field.
Forum: Plugins
In reply to: [DW Question & Answer] How to remove views?Yes, you can remove the the whole filter option as well as the filter box on the right side.
Forum: Plugins
In reply to: [DW Question & Answer] Questions are not visibleHi mate. At the moment you can change the status of question only after answering so that the question is published on your forum.
Feel free to ask for further assistance.Forum: Plugins
In reply to: [DW Question & Answer] Are these things possible?Hi mate,
1/ At the moment, the plugin does not support to limit access by role. If you want to have it, you can try the following plugin: https://wordpress.org/plugins/advanced-access-manager/ —
2/ Our plugin does allow users, authors, admins to get notifications.
If you have more questions, kindly let us know.Forum: Plugins
In reply to: [DW Question & Answer] Search Tags or Full Text of AnswersHi mate,
Thank you for your questions,
Our plugin doesn’t support this feature at the moment. However, we will take it into consideration and add it to the later version.Forum: Plugins
In reply to: [DW Question & Answer] How to use WordPress default editor for DW?Hi mate,
Thank you for your questions, however, they make us a little bit confused. Can you clarify your issues or send us some screenshots via hi@designwall.com for further checking?
Forum: Plugins
In reply to: [DW Question & Answer] There is no any warning about autorizationHi mate,
You can open files in the templates folder such as content-single-answer.php or archive-question.php…. and add this code into parts that you want to show warning to unlogged users
.<?php if ( is_user_logged_in() ) : ?>
<div><?php _e( “You doesn’t have permission to post a question”, ‘dwqa’ ) ?></div>
<?php else : ?>
<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’ ), ‘‘, ‘‘ ) ?></p>
</div>
<div class=”dwqa-answers-login-content”>
<?php wp_login_form(); ?>
<?php do_action( ‘wordpress_social_login’ ); ?>
</div>
</div>
<?php endif; ?>Forum: Plugins
In reply to: [DW Question & Answer] User pic is too bigHi mate,
You can add the following code to the style.css file:
.single-dwqa-question .dwqa-question-item .avatar, .dwqa-comments-list .dwqa-comment-meta .avatar { width: 32px; height: 32px;}
Forum: Plugins
In reply to: [DW Question & Answer] Submit a questionHi mate,
Please open in the inc folder of the plugin and find the line 484 to change the link you want to redirect to.
Ex: like this is my url : http://mysite/discussion-forum/
exit( wp_safe_redirect( home_url() .’discussion-forum/’ ) );