Jayanta
Forum Replies Created
-
Thank you @vinod-dalvi
The first problem has been sorted. I find that the default search form through get_search_form(); overridden by ivory search was not working that way…but placing your shortcode is doing it now.For the second question, I am already using GA4 for the same…but the report for custom definition “search_term” under “events” is not populating of late, though it was working before. Don’t know if that is a GA bug. The real time data (30 minutes) for “search_term” is showing in GA though.
Anyway, an optional setting for storing the search terms in the database would be great, I guess.
Best regards,
I think at least editors/ authors should be allowed to create new polls. Is there no way to achieve that?
Already rated. Thanks.
Thanks so much Ernest. I confirm your above snippet worked.
Forum: Fixing WordPress
In reply to: How to customize the template at blog.php in astra child themeThanks @jnashhawkins for your valuable inputs.
The changes actually worked when I modified the file in the parent theme itself but I have to replicate the same in the child theme so that I don’t lose them when the theme gets an update.@webtemyk
Your plugin is not really compatible with WP 5.6.
I had to downgrade WordPress to 5.5.3 as I found that all js snippets in Woody were somehow disabled for non-logged in users though for logged in users they were working fine. Then I tracked it down to find a compatibility issue of Woody with WordPress 5.6. Please help. Thanks.- This reply was modified 5 years, 5 months ago by Jayanta.
You’re right. Now I get this. Thanks so much Artem.
Oh, I see! I just disabled the option and it works fine.
But wait! The shortcodes used in other snippets are not working now. They are printed as raw shortcodes as it should be.
You can see this working on the live site here with Woody snippet version 2.3.7:
https://englicist.com/askI enabled the option “Execute shortcodes in snippets”, but still the error occurred.
And the code snippet was always working till the new version of your plugin. I cannot find an error. Could you please check? I’m posting the snippet here:if(isset($_GET['redirect']) && ($_GET['redirect'] == base64_encode('guest'))){ echo do_shortcode( "[dwqa-submit-question-form]" ); } else if(isset($_GET['success'])){ echo "<div class='submit-dwqa-question dwqa-container'> <p style='background-color: #dff0d8; padding: 5px; border: 1px solid #dff0d8; border-radius: 5px; display: block; color: #3c763d; text-align: center;'>Thanks for your question! You'll receive an email when we answer.</p></div>"; } else{ if(!is_user_logged_in()) { echo '<div id="ask-login-message"> <span style="font-size:18px;">Please login to ask a question.</span><br> <a href="/login?redirect_to=/ask" class="button">Login</a><br> <span style="font-size:18px;">New to this site?</span><br> <a href="/memberships" class="button">Register Now (free)</a><br>'; echo "<a style='font-size:12px; cursor: pointer;' onclick='window.location.href=\"?redirect=".base64_encode("guest")."\"'>Continue as a guest</a>"; echo '</div>'; } else{ echo do_shortcode( "[dwqa-submit-question-form]" ); } }Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] PHP Noticein debug logYeah, please do that. Thank you so much.
Forum: Plugins
In reply to: [Watu Quiz] Global settings possible?“These settings are available in Edit quiz page.”
I know these settings are available in edit quiz page. But I wanted to set these things globally for all quizzes on the site, so I don’t have to set it every time for each quiz.I understand probably there’s no way to do that currently. But would it be possible for you to add this functionality to the plugin? It might be helpful for many users out there.
- This reply was modified 5 years, 10 months ago by Jayanta.
Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] PHP Noticein debug logThanks for the update. I updated the plugin and tested that the php notices are now gone. But in the structured data testing tool, It’s showing the names of anonymous users as ‘anonymous’. Would have been better if the plugin could draw the names of those anonymous users saved in the database as the value of the meta_key “_dwqa_anonymous_name”.
What do you say?Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] PHP Noticein debug logThanks for your support.
Hi Artem,
Disregrd my previous post. I discovered that it was a mere caching issue. Hard refreshed the page and the buttons are showing now. Thanks for your help.