RBX
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Utilizing Woocommerce Email TemplatesThankyou. I’ll have a look at it.
Forum: Plugins
In reply to: [WC Return products] Minor IssuesFor #3, I later realized that it shows Customer Notes, and new customer note must be entered manually while refunding to update customer about status of their request.
Forum: Fixing WordPress
In reply to: Triggering Cron Jobs@harimay: Looks like I need to request wp-cron.php using CURL instead of homepage to trigger cron jobs.
Forum: Fixing WordPress
In reply to: Triggering Cron JobsDoes it work like Crontrol?
We have a lot of websites, so going back and installing a plugin on all of them doesn’t seem viable. It would be great if a cron job on one site could trigger cron jobs of others (which is what I plan to do).
Forum: Plugins
In reply to: [W3 Total Cache] Site broken 'sometimes' with CSS minificationIt seems different css file is generated for each page, and you have to request the page for it to actually be generated, therefore it doesn’t get loaded the first time.
Forum: Plugins
In reply to: [W3 Total Cache] Site broken 'sometimes' with CSS minificationI encounter this problem every time I empty cache, and have to request each page twice to render correct output.
Well, I’m on the free plan and legacy browser support isn’t part of the plan. Thanks anyways.
I’ll try contacting CF support to make sure if this really is the problem, and will see if they respond.
Forum: Plugins
In reply to: [Image Watermark] Manually adding a watermarkIt doesn’t work for me either using version 1.5.5.
It says that watermark was successfully applied, but it actually isn’t.
Forum: Plugins
In reply to: [Math Captcha] Catptcha time expiredI too get Captcha time expired validation error when using with CF7. Math problem is updated, but the answer is always 7.
I have the same issue.
I think we could remove it from pages by hooking into
wp_recaptcha_required
orwp_recaptcha_do_scripts
.I tried this on https://shoemania.in and reCaptcha script doesn’t seem to be loading on home page but by hooking into
wp_recaptcha_required
I think, it could be sped it up a bit.function restrict_recaptcha() { if(is_home() || is_front_page()) { return false; } return true; } add_filter('wp_recaptcha_do_scripts', 'restrict_recaptcha');
Edit:
Hooking intowp_recaptcha_required
doesn’t seem to be working.wp_recaptcha_do_scripts
works fine, I believe.Forum: Plugins
In reply to: [Contact Form DB] Capture submission page URLThank you.
Forum: Plugins
In reply to: [WooCommerce] Unable to refund manually – JS errorYou are right, I found this error.
<br /> <b>Fatal error</b>: Call to a member function get_currencies() on a non-object in <b>/home/bhartiwe/public_html/astropoint/wp-content/plugins/woocommerce-tm-extra-product-options/include/class-tm-epo-helper-base.php</b> on line <b>424</b><br />
An update is available, perhaps it’ll solve the issue.
Forum: Plugins
In reply to: [WooCommerce] Unable to refund manually – JS errorThere is one that remains
Notice: Undefined variable: the_display_msg in /home/bhartiwe/public_html/astropoint/wp-content/plugins/ccavanue-woocommerce-payment-getway/index.php on line 443
This can be seen when Gateway isn’t properly configured. Avoiding this message, and showing a more useful message should help.
Hello, I have updated to latest version (1.7) on this test site: https://astropoint.bhartiwebinfotech.com/
On checkout page, the notices I mentioned in first post can still be seen.