DesignWall
Forum Replies Created
-
Forum: Plugins
In reply to: [DW Question & Answer] Remove Notice To Upgrade To Pro In Admin DashboardThis is just a quick fix solution. We will add an option to turn off this notice on the upcoming version of DW Question & Answer.
Forum: Plugins
In reply to: [DW Question & Answer] Question View Not workingCan you give me your admin account to hi@designwall.com for further checking.
Forum: Plugins
In reply to: [DW Knowledge Base] Category not styledHi diogolmadm and ricberw,
You can contact with me via email: hi@designwall.com. Please send me your site and a screenshot for further checking.
Regards,
DesignWall TeamForum: Plugins
In reply to: [DW Reactions] How to make it work with infinite scroll?This plugin didn’t support infinite scroll on version 1.0.1, we added this issue into product roadmap and we will consider fixing in on the upcoming version of DW Reactions.
At this time, you can still use this feature on your single post.
Regards,
Jackie.Forum: Plugins
In reply to: [DW Knowledge Base] Category not styledThis issue was fixed in new version 1.0.1
Forum: Plugins
In reply to: [DW Question & Answer] Question View Not workingCan you send me a screenshot of your Permissions setting on Dashboard > Questions > Settings
Jackie.
Forum: Plugins
In reply to: [DW Question & Answer] 1.4.0 Breaks EverythingCan you give me a screenshot for further checking?
Jackie.
Forum: Plugins
In reply to: [DW Knowledge Base] Category not styledHi diogolmadm,
Thanks for send us an issue. We will try to fix that in the next version.
Forum: Plugins
In reply to: [DW Question & Answer] Remove Notice To Upgrade To Pro In Admin DashboardHi,
You can openwp-content/plugins/dw-question-answer/inc/Admin/Welcome.phpand remove line 8add_action( ‘admin_notices’, array( $this, ‘admin_notices’ ) );
Regards,
Kevin from DesignWall.Forum: Plugins
In reply to: [DW Question & Answer] How to set Turkish language?You can use Poedit and open the file
wp-content/plugins/dw-question-answer/languages/dwqa-tr_TR.poand you can translate it.Regards,
Kevin from DesignWall.Forum: Reviews
In reply to: [DW Reactions] breaks the layoutWe’ve always been listening to customers’ suggestions to improve our products. We have fixed this issue in the latest version of the plugin. Hope you’ll take the time to re-evaluate our products.
P/s: Can you give us a URL to the topic on Advanced WordPress group as you mentioned above.
Forum: Reviews
In reply to: [DW Reactions] breaks the layoutDear eminozlem,
First, I understand your concern and the problems that you encountered.
Yesterday, after sharing this WordPress plugins to our community, we have received a lot of suggestions from many users. These reviews come from the users in our community, and absolutely nothing is shady here at all. You can see this topic about our plugin: https://www.facebook.com/groups/wordpressviet/permalink/1253068831374332/
A software product cannot avoid from bugs, however, we have thoroughly tested the issues that users sent us before we public it on WordPress.org to ensure that bugs are fixed. You can download the latest version of DW Reactions here: https://github.com/designwall/dw-reactions/
I have been working with the developer of DW Reactions for over 2 years. I’m sure he is a very careful person. Yesterday your review makes him quite sad. Thank you for your suggestion, but please make constructive ones in the next time.
Regards,
Jackie
Team Leader at DesignWallForum: Reviews
In reply to: [DW Reactions] PerfectThank you, It would better if you can translate your comment to English 🙂
Forum: Reviews
In reply to: [DW Reactions] Very bad pluginSorry for the trouble that you encounter, can you give us some details for further checking?
Forum: Plugins
In reply to: [DW Knowledge Base] Prevent showing entries for logged of usersHi there,
Do you use this plugin https://wordpress.org/plugins/member-access/ ? This plugin is not updated for a long time ( 4 years ). Our plugin can not support for third-party like that. But if you want to hide knowledge base article, you will edit file MemberAccess.php in the folder wp-content/plugins/member-acccess/lib:
Change line 808 and 811:
if ('post' == $post->post_type && $plugin->getOption('posts_private')) {
if ('page' == $post->post_type && $plugin->getOption('pages_private')) {To
if ( ( 'post' == $post->post_type || $post->post_type == 'dwkb' ) && $plugin->getOption('posts_private')) {
if ( ( 'page' == $post->post_type || $post->post_type == 'dwkb' ) && $plugin->getOption('pages_private')) {Preferably you should use member access plugin allow support custom post type.
Regards,