6923 comments found.
Hi, when user posts answer in a question form, he sees: “Your answer has been added successfully, It’s under review.”
And later when I log in as an admin, I do not see any notification about reviewing the answer.
how it can be fixed?
Thank you.
Hi @alexalex2023!
Thanks for using Discy.
You can choose your permissions from the theme settings/User settings/Permissions.
Thank you, we look forward to serving you!
Best Regards.
Hello,
How to remove ADD MEDIA and “insert image” from the question form ?
Also, if someone copy image & paste on form then image should not accepted.
i have also your WPQA plugin installed.
Hi @alexalex2023!
Thanks for using Discy.
About to didn’t allow the image in this case, you need to remove the editor totally and make it a normal textarea.
Thank you, we look forward to serving you!
Best Regards.
Good day. I have a few questions before purchasing. Is it possible to display a short overview of the answer in the question feed? And are there any shortcodes for categories and forms for sending a question? I can’t view the documentation.
Hi @imprint007!
Thanks for your interest in Discy.
Yes, you can do that.
However, regarding shortcodes, they are not available for the categories.
If you have any more questions, please do not hesitate to contact us.
Thank you, we look forward to serving you!
Best Regards.
Thank you, is there a shortcode for the form to send a question? So that the question is sent to the category ID?
What do you want to do exactly?
I need to have two categories on different pages and a form without choosing a category, so that a person writes a question directly to the category on the category page
If you ask the question directly from the category page, it will choose the category itself.
Oh great, then I’ll buy it. After purchasing, can you tell me how to make a preview of the answer in the feed?
Sure, I’ll let you know.
I’m planning to use the Discy theme for a project like a social polling/question platform. I want to ask:
Is it possible to show the voting results in percentages (e.g., 45%, 30%, 25%) instead of just upvotes/downvotes or best answers?
If not natively supported, is there a recommended plugin or a customization method for this?
Thanks in advance!
Hi,
No, sorry, but this is not available, if you want we can make it for you with custom price.
Hi,
It will be ready in the next update.
Also, While answering questions, it’s getting posted multiple times. This is happening for many users . Here is my website: https://www.answerclub.org/
Your support was expired. Please renew it.
And please explain more the problem, I didn’t get your meaning.
Hi there,
May I know where can I change to following code:
<meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1”>
PageSpeed Insights Results: Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page.
Hi,
What changes do you want?
The viewport changes, I can’t find the option.
Please check the below screenshot:
https://snipboard.io/1uOnS3.jpgAlso the another issue below:
https://snipboard.io/ed1ZzT.jpgOk, both of them will be ready in the next update.
Hi Dear,
The sticky questions are not counted for the items per page. Even Pagination style is Pagination or Standard. It slows down the site and makes a Big DOM size when there is 30 sticky questions at Home page.
Could you also update this in the next update?
But no one make 30 sticky questions in one page.
Its not counted because just showing in the first page.
Actually, I’m the one who set up the 30 sticky questions on the Home page. I changed the label from “Pinned” to “Hot Q” so that users would feel like the questions are Hot Questions, rather than just pinned. This way, it looks more natural and engaging. I can also manually sort them if needed.
It’s not making for that, you can make a custom page for questions and show them by category or question ids.
How? Could you guide me please? Can I also manually sort the questions to users?
You can do that from here https://2code.d.pr/i/dzL3Yt and for the sorting, you can put all the questions you want in a specific category and sort them by changing the publish date of the question to be old or new.
Changing the publish date of the question may conflict with my site terms and conditions. Because it is the users generated question, I have no permission to change the date.
I think you added these questions related to something you want. in this way you can’t sort them.
So there is no solution to sort the users generated questions at Home template….is it?
No, but I can do that for you with custom price if you want.
How much will it cost?
Please send me a private message.
Why is reCaptcha loaded multiple times just because I want to use the captcha in different forms?
https://screenshots.work/vfs0LzJj https://screenshots.work/lrx0WkyYAnd why doesn’t the theme have a meta description?
Hi,
Yes, if you use it in different forms, it will load in other places.
No, we already have meta descriptions. What’s the problem with that?
Well, I don’t have a meta description:
https://screenshots.work/WMKwtTlCThere’s nothing in the source code either.
If I integrate a meta description via functions.php, it works:
https://screenshots.work/kGP2LPMZadd_action('wp_head', 'add_default_meta_description', 5); function add_default_meta_description() { if (is_front_page() || is_home()) { global $post; $existing_description = ''; $existing_description = get_post_meta(get_option('page_on_front'), 'rank_math_description', true); if (empty($existing_description)) { $default_description = "Discover expert dating advice, relationship tips, and answers to your burning love questions at DatingQA.com. Navigate romance confidently—find clarity, connection, and lasting relationships today!"; echo '<meta name="description" content="' . esc_attr($default_description) . '">' . "\n"; } } }
Then I also solved the problem with “Heading elements are not in a sequentially-descending order”:
https://screenshots.work/q8clkNbMAt least that’s 2 points better than before.
But the theme still has a few more issues:
https://screenshots.work/lyHqQDxjCurrently, I achieve the following page speed scores on desktop: 99/92/100/100, and on mobile: 82/90/100/100
Fix for DOM size
// 1. HTML compression and comment removal function compress_html_output($buffer) { // Remove HTML comments (except IE conditions) $buffer = preg_replace('/<!--(?!\[if).*?-->/', '', $buffer); // Remove unnecessary spaces and line breaks $buffer = preg_replace('/\s+/', ' ', $buffer); return $buffer; } function start_html_output_buffer() { if (!is_admin()) { ob_start('compress_html_output'); } } add_action('template_redirect', 'start_html_output_buffer'); // 2. Remove empty <div> and <section> using JS function remove_empty_containers_js() { if (!is_admin()) { echo "<script> document.addEventListener('DOMContentLoaded', function () { document.querySelectorAll('div:empty, section:empty').forEach(el => { el.remove(); }); }); </script>"; } } add_action('wp_footer', 'remove_empty_containers_js', 99); </div>
Fix for Heading elements are not in a sequentially-descending order
function fix_heading_hierarchy_js() { if (!is_admin()) { ?> <script> document.addEventListener('DOMContentLoaded', function () { try { document.querySelectorAll('h4.member__name').forEach(function(el) { const h3 = document.createElement('h3'); h3.className = el.className; h3.innerHTML = el.innerHTML; el.replaceWith(h3); }); } catch(e) { console.warn('Fehler im heading-fix:', e); } }); </script> <?php } } add_action('wp_footer', 'fix_heading_hierarchy_js', 100); function fix_heading_hierarchy_style() { if (!is_admin()) { echo '<style> h3.member__name { font-size: 1.2rem; /* Passe auf exakte h4-Größe an */ font-weight: normal; /* falls nötig */ margin: 0 0 0.5em; } </style>'; } } add_action('wp_head', 'fix_heading_hierarchy_style', 99);
Fix for Touch targets do not have sufficient size or spacing
function force_touch_target_fix_css() { if (!is_admin()) { echo '<style> /* Global minimum sizes */ .header-search input[type="search"], .header-search button[type="submit"] { min-width: 48px !important; min-height: 48px !important; box-sizing: border-box !important; } .header-search button[type="submit"] { margin-left: 8px !important; font-size: 16px !important; line-height: 1.2 !important; } /* Focus indicator */ .header-search button[type="submit"]:focus, .header-search button[type="submit"]:active, .header-search input[type="search"]:focus { outline: 2px solid #005fcc !important; outline-offset: 3px !important; } /* Centered icon */ .header-search .search-wrapper { position: relative !important; } .header-search .search-wrapper input[type="search"] { padding-right: 40px !important; } .header-search .search-wrapper button[type="submit"] { position: absolute !important; top: 0 !important; bottom: 0 !important; right: 8px !important; margin: auto 0 !important; height: 24px !important; width: 24px !important; background: transparent !important; border: none !important; padding: 0 !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; } .header-search .search-wrapper button[type="submit"] i { font-size: 18px !important; color: #fff !important; line-height: 1 !important; } </style>'; } } add_action('wp_head', 'force_touch_target_fix_css', 50);
Fixed for [user-scalable=“no”] is used in the <meta name=“viewport”> element or the [maximum-scale] attribute is less than 5.
I copied the header.php into the child theme and adapted the viewport:
<meta name=“viewport” content=“width=device-width, initial-scale=1”>
Thank you so much for your hard work, Good luck for your work.
Hi, I know my support has expired but I’ll appreciate if you help me understand on these two questions: 1. Can I restrict users to post questions and answers to a particular category? For example, only users who have paid for a particular plan or package can post in some selected categories while other categories remain free for all?
2. How can I enable nested categories in this theme ? Or have the ability to select more than one category when posting a question just like you would do in blog posts or WooCommerce products?
Hi,
1 – You can do that for all categories, not for specific categories.
2 – You can choose different styles for the categories from the theme settings/Question settings/Add – Edit – Delete.
How to set 100% (fit the content area) width for the featured images?
https://screenshots.work/YwncvGbWHi @coderworks!
Thanks for using Discy.
For the questions only? or posts also?
Thank you, we look forward to serving you!
Best Regards.
Yes, for both, pls.
Thank you, we look forward to serving you!
Oh yeah? And that’s why I’ve been waiting for an answer for four days?
Hi,
Sorry for the late reply.
Try to use this code for the child theme/functions.php fileadd_filter("discy_show_defult_image_page","discy_child_none"); add_filter("discy_featured_image_single_question_width","discy_child_none"); add_filter("discy_featured_image_question_width","discy_child_none"); add_filter("discy_featured_image_single_question_height","discy_child_none"); add_filter("discy_featured_image_question_height","discy_child_none"); add_filter("wpqa_featured_image_answer_width","discy_child_none"); add_filter("wpqa_featured_image_answer_height","discy_child_none"); function discy_child_none($return) { return false; }
Ok. Works. Thanks.
a) Recommendations for an SEO plugin? (Google Page Speed reports, among other things, that there is no meta description.)
b) Recommendations for preventing comment spam (replies)?
1 – Yoast or Rank Math.
2 – Any spam plugin it will work.
I deleted my website and reinstalled it, after reinstalling it is showing “Licenses are in use”. I had installed and activated this website on the same domain name earlier. So why is this problem appearing now.
Hi,
I’ve just revoked it for you, you can use it now.
Hello, I want to change the currency in the payment fields. In which file of the theme is the TRY text located? I want to find it and replace it with “₺”.
Hello,
When you buy the theme I’ll let you know how to do that.
Hi! I purchased the Discy theme, but I would like to use it on a different website. Since it’s no longer active on the previous site, is there a way to revoke the current license and activate it on my new domain? Let me know if this is possible. Thanks!
Hi,
I’ve just revoked it for you, you can use the new domain now.
All Licenses are in use. You can use the license on only one domain, revoke the license from the Licenses page on our site to be able to use it on this site.
My Wordpress is saying this.
How do i revoke the liscense from another website?
Hi,
I just saw you made it, so everything is fine?
just looking in the manual as to how to access setup the new ai feature is there a section? if so can you direct me to it
Hi,
Just you need to put the api key and it will work.
Hi there,
When setting up the Home Page template, I enabled “Sticky Questions”, selected “Load More” as the pagination style, and set “Items per page” to 5.
However, if there are more than 5 sticky questions (e.g., 16 sticky questions), the page displays all 16 at once instead of limiting it to 5 per page.
How can I fix this so that only 5 sticky questions are displayed initially, with the rest loading incrementally via “Load More”?
Looking forward to your support. Thanks!
Hi @monsterakk007!
Thanks for using Discy.
The sticky questions are not counted for the items per page.
Thank you, we look forward to serving you!
Best Regards.
Hi there,
Can it be achieved with some custom codes please?
Because if the sticky questions is not counted for the items per page then the loading time of the site is too long….
No sorry, but this is not available.
Hi
Could you tell me which file in the theme controls the display of sticky questions of Home template? I’d like to research it myself.
No, it’s not easy to do that, sorry about that.
Okay…. Sir, For the option of Ajax file load from admin or theme Which one is better? load from theme more faster or not?
It’s better to make it from admin.
Why? Could you tell me Pros and Cons Pls.
We made it optional to work from the theme because some of the cache plugin blocked the file which worked from the admin, so if your plugin do that, you can use it from the theme.
So, there won’t be any conflicts or other issues using the Ajax load from theme, is it?
Yes.
Presale.
Thanks you for the giving out the best all your best.
1. here are my two domains https://itsupportforum.com and https://asksupportdesk.com of all your thinks what fits each as far as what you might understand when you first read the domain name. am new to Tech and my passion is tech support.
2. which one should do you think i should go with first of the two domains because i cant imprement both
3. if there any addon for the app all all basic functions are included
4. how much do you charge for customisation.
Hi @mwebe!
Thanks for your interest in Discy.
1 – You need to buy a new license for every domain.
2 – If you can’t buy 2 licenses, you need to choose the content you loved more to continue in your site.
3 – This is the theme and when you buy the theme you don’t need to buy anything.
4 – For what?
If you have any more questions, please do not hesitate to contact us.
Thank you, we look forward to serving you!
Best Regards.
How can I make the response of a registered user automatically approved without the need for moderation approval?
Hi @nijat7!
Thanks for using Discy.
Your support expired. Please renew it.
From here https://2code.d.pr/mFkIRE and here https://2code.d.pr/HaJoAa
If you activated the custom permissions https://2code.d.pr/n077Yc && https://2code.d.pr/YWNtME you must activate it for the user group too.
Thank you, we look forward to serving you!
Best Regards.
Thank you very much, this problem has been resolved, but one big problem is that the site freezes when a user posts a question. What could be causing this?
This means you need to pay for the OpenAI credit, or you can stop the answering by AI.
before purchasing i wanted to check if ChatGPT can be integrated and working
if yes please share a document or steps to check on your demo website
Hi @mallireddymanikyalareddy!
Thanks for your interest in Discy.
It didn’t need any steps, just put the API key and it will work, you can test our demos.
If you have any more questions, please do not hesitate to contact us.
Thank you, we look forward to serving you!
Best Regards.
Hi Thanks once more for this wonderful software and your support, I am building a very wonderful website with it. My question is this, is there a way for the admin to see all answers submitted on the site. This is moderation purpose.
Hi @faradng!
Thanks for using Discy.
Yes, sure, from here https://2code.d.pr/i/AP3jYl
Thank you, we look forward to serving you!
Best Regards.
I know how to see the answers from wordpress end. I was asking how to see all answers from front end?
Why? What do you want to do exactly?
As an Admin, i will like to be able to see all the submitted answers from the website front-end instead of through wordpress admin page.
For easy and fast moderation of answers.
is it possible
No sorry, it’s not available.
I want only Register users to answer the question … how to enable this???
Currently i notice anyone … even unregister guest also sharing thoughts on questions… so where is the option to enable only for login users.
2nd….
I want to change “Ask a question” text i couldnot find the option… where it;s???
Hi @dkc_00!
Thanks for using Discy.
1 – You can do that from the theme settings/Users settings/Permissions.
2 – You can use the loco translate plugin or poedit program.
You can check from here https://2code.info/docs/discy/translation-plugin/ and https://2code.info/docs/discy/translation-theme/
You can use them in the same language, not only for translation into another language.
Thank you, we look forward to serving you!
Best Regards.
1) I could not find ON / OFF option i check multiple times. Just tell me If I want only Loged in users to comment or reply to question then what to do???
under Permission section
UPDATE – Ok i got it… thanks … for your help.
Ok, that’s great.