RafaelDeJongh
Forum Replies Created
-
Forum: Plugins
In reply to: [BulletProof Security] Sendcloud Connection Getting Blocked?Thank you very much for the fast reply, in case there’s still an issue I’ll report back but I’m sure this will resolve it, thank you!
Forum: Plugins
In reply to: [Sendcloud Shipping] Cloudflare Bot Fighting Mode – Sendcloud Sync IssuedTo get back to this ticket and inform others with similar issues, to start with the mentioned endpoints are indeed accessible and allowed as our POS also utilise these endpoints and have no issues when bot fighting mode is on. So we know for a fact that it can work as it does with our POS and we didn’t require to whitelist, alter, modify, or change any security settings at all with it in contrast with sendcloud’s plugin.
The main reason I’m now getting back to you on this support thread is that I’ve made now 4 support tickets and they all have been closed without any proper solution, and I have to always start from zero as apparently this issue while being constantly said that it is noted down internally no one actually knows about it.
So going over a month and 4 closed tickets that I didn’t want them to close but they did anyway I’ve pretty much had enough of this gross incompetence and constant requirement to re-explain myself that I’d prefer to handle it here instead, as I simply lost faith in your support system.
So even with all these support tickets and multiple months now (even prior to submitting this ticket) of trying to get this resolved, we have absolutely not gotten anywhere closer to a solution. Not for this synchronisation issue or the failure to fetch pre-order products which I have also made multiple tickets for without a proper solution in sight.
So can further support be given here or can I receive a direct email that I can contact as your support ticket system is simply not acceptable as they keep closing open tickets without providing any solution.
Thank you in advance for further information.
Forum: Plugins
In reply to: [Sendcloud Shipping] WooCommerce Order TagsIs this similar to what causes custom product order states like used by the Woocommerce Pre-order plugin is currently not being parsed/synced with sendcloud with this new plugin (while it did with the old plugin)?
Since we switched to the new plugin as the old one got removed from the WordPress plugin repository we’ve only been getting more issues and lacking core critical data that’s not being synced with Sendcloud and it’s really frustrating as your direct support is extremely slow and usually doesn’t even understands what’s going on or what can be done to resolve this issue.
Is there someway to get a temporary fix for this so things are getting synced properly, or is it currently not possible at all even with OP’s code addition?
I do hope this gets resolved ASAP, and would love to get a temporary fix for this so we actually can perform our required tasks.
Thank you in advance for further information and assistance.
Forum: Plugins
In reply to: [BulletProof Security] Sendcloud sync connection issue – 403 errorThank you for looking into this, I might have jumped the gun on this one, I’ll look further into it to what’s causing this issue.
Thank you either way for checking it out!
Yea doing it per code is for me a whole lot faster as I then do not have to recreate existing shapes. As this is just slightly adjusting the look and feel of the admin panel to modernise it, it won’t take much other than changing various colours to give it a fresh new look. I’ll stick with the basic BPS blue but I’ll most likely will go in the ways of flat or material design use ages when it comes to colours and shadows.
I’ll also be honest the last time I actually made a mockup in photoshop was 6 years ago. These days it’s a lot easier to utilise other tools which are more precise and fitted for this kind of work IF the design of it would completely change rather than what I have in mind to just modernise the current theme.
But yea that’s something for in the future.
To be honest it’s faster for me to create a mockup design with code than with Photoshop.
It’s not for the near future as my agenda is piling out, but it’s something that I actually had on my personal todo list for some time.
But yea, I’ll get back to you once I’ve got something to show 😉
Seems I did not get the first announcement that there was a reply. But nice to hear I can utilise the Wizzard to utilise code from there to do what I require.
My theme suggestion would be merely a visual change, so just basic CSS that would change the appearance of it. I could provide some mockups if wanted of course.
Thanks either way for the reply!
I currently put a sort of fail safe in place until I get further support which till now I haven’t gotten. But the code I used pretty much removes the whole #payment area (including the buy button and what not) on the actual checkout page as the warning for that you still don’t have enough in your cart is still present when this happens (or it should at least). So based on that I wrote this code snippet to be put in your functions.php
add_action('woocommerce_after_checkout_form','amount_add_jscript_checkout'); function amount_add_jscript_checkout(){echo '<script>(function($){if($(".woocommerce-error span").hasClass("woocommerce-Price-amount")){$("#payment").remove();}})(jQuery);</script>';}Pretty simple code snippet that will just remove like mentioned before the whole #payment section when it finds a woocommerce-error with the class woocommerce-Price-amount on the page.
Hope it will also help you in the mean time before we actually can get some reply from the original author(s).
That sounds awesome, I’ll keep an eye out for it 😉
Hi there
Thanks for your reply, I currently have somewhat solved it by adding a cron job to clear the cache a couple minutes after your plugin takes into effect:
//Cache Clearing on time function shopHoursCacheClear(){ Swift_Performance_Cache::clear_all_cache(); Swift_Performance::prebuild_cache(); } add_action('cronCacheClearOpen','shopHoursCacheClear'); add_action('cronCacheClearClose','shopHoursCacheClear'); wp_schedule_event(strtotime('14:02:00'),"daily","cronCacheClearOpen"); wp_schedule_event(strtotime('02:02:00'),"daily","cronCacheClearClose");It therefore might be interesting perhaps to have a hook or so where we can add a specific function to when the plugin triggers its functionality. Like here clearing and prebuilding the cache.
Forum: Plugins
In reply to: [Store Hours for WooCommerce] Having a global class on body when closed.Most definitely, thanks a bunch for the great support and development of your plugin!
Forum: Plugins
In reply to: [Store Hours for WooCommerce] Having a global class on body when closed.Thanks I just managed to check the update, while the new features are there it is still lacking the feature request regarding the body class that I am after. Placing the bar itself is handy but I was actually more referring to having a body class enabled when the bar is active so that I can move the cookiebar up rather than the alert bar.
So how I would love to see it is that when the zhours alert bar is active and working that there is a specific zhours class added to the body classes so that I can say to alter anything like hide specific stuff and change other parts of the site whenever the bar is active and the store is closed.
This certainly would come in handy, and while the custom positioning is handy, it is not directly something I require as I would be able to modify this part as well easily with CSS but I wouldn’t be able to modify other parts AROUND the alert bar when it is active as there isn’t any class to select a specific element based on the alert bar being there or not.
So if anything I’d love to see that when the bar is active and the store is closed that there is a general class added to the body which we then can utilise to modify other elements on the site in the way like body.zhoursActive #cookieBar{top:30px} for example, currently this is not really possible without a lot of tweaks and that’s a bit of a shame.
Either way thanks and I do hope to see this in a future revision!
Forum: Plugins
In reply to: [Store Hours for WooCommerce] Having a global class on body when closed.Cheers! Just updated!
Forum: Plugins
In reply to: [Store Hours for WooCommerce] Having a global class on body when closed.Awesome to hear! Thank you in advance, such a body class would really help with altering different parts on the site whenever the store is closed!
Thanks in advance, and especially for the fast reply!
Forum: Plugins
In reply to: [BulletProof Security] BPS Blocking ZapierAlright not a problem, I am using the latest PHP7.3 on my server but other sites that are also on it are running between 7.0 (which is the server’s default) and 7.1/7.2.
As these are still shared web servers I can’t directly go into editing any apache mods myself or enable/disable any.
I’ve made a complete fresh install with only BPS installed and I directly get the error when I activate the plugin.
So I am pretty sure it has something to do with my hosts server security mod configuration as they also have some additional recaptcha verification when logging into the back-end which is completely done by the webhost rather than something you can configure (or even disable).
So yea this is certainly a very specific unique and isolated hosting environment problem rather than BPS, I still do not know why disabling BPS would make it work though.
But I can confirm this is not the plugin itself as well as I tested this on a different webhost and it didn’t had this problem at all.
So for me the htaccess code fixes it for me, but this is really something isolated and not an actual problem of the plugin itself.
Thanks a bunch @aitpro for the continuous assistance and perhaps if anyone ever has a similar issue then I guess they also just require to white list it like I’ve done.
Either way thanks and I’ll mark this as resolved.