stratweb
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Contact form 7 is not workingUs too. We’ve been having this problem for months now. We’re a web design company and rather than try figure out all the sudden problems with Contact Form 7, we are switching all of our customer’s sites to Gravity Forms. It’s a hassle, but since we can’t get a quick and easy fix from Contact Form 7 developers, we have no choice.
Users don’t get the “form sent” confirmation and the form doesn’t send a notification to the site owner.
We’ve tried using the SMTP plugin, but we don’t host emails and getting that info from customers is more trouble than it is worth.
So, good job Contact Form 7 developers. We give up! We’re using Gravity Forms now.
Forum: Plugins
In reply to: [Contact Form 7] Sending stopedUs too. We’ve been having this problem for months now. We’re a web design company and rather than try figure out all the sudden problems with Contact Form 7, we are switching all of our customer’s sites to Gravity Forms. It’s a hassle, but since we can’t get a quick and easy fix from Contact Form 7 developers, we have no choice.
Users don’t get the “form sent” confirmation and the form doesn’t send a notification to the site owner.
We’ve tried using the SMTP plugin, but we don’t host emails and getting that info from customers is more trouble than it is worth.
So, good job Contact Form 7 developers. We give up! We’re using Gravity Forms now.
Fantastic! Thanks!
Hmmm…well this one broke the entire Gallery! Lol!
I will send the Bug Report. Thank you for that suggestion.
Yeah, I hear you on that.
The only reason I am pushing this is because our customer is insistent on placing the blame on us. Our policy is that if a mistake, on the customer’s part, breaks a site, they pay us to fix it. If it is due to an update or something like that, we fix it at no cost. I think that may be what is motivating him to place blame.
I believe that he has inadvertently uploaded a corrupt image and I believe that caused the problem. Is that possible?
The bad part is that by insisting that we research this and give him a concrete answer, his cost is going up!
Is there someone there who might know more about this and can give me a statement for our customer?
We installed the galleries on the site we built for our customer. Our customer is loading the images to the gallery himself. He takes the pictures with his older iPad, then downloads them onto his computer. From there, he uploads them into the gallery.
Also, I have new details to report on this problem:
The gallery crashed while our customer was uploading images to it. We discovered that at the exact moment that the gallery crashed, 4 strange posts appeared in the “Uncategorized” category of the WordPress post manager. Their titles looked like image file names, but one of them had a weird extension. The other three appeared to be attempts to upload the same image 3 times before the gallery crashed.
The one with the weird extension is the one I believe crashed the gallery, but we can’t figure out where it came from. Our customer swears that he didn’t upload an image with that file name, but he was the only one on the site at the time and he was uploading to the gallery that crashed.
To fix the issue, we had to delete the affected gallery and all of the images and then create a new gallery and re-upload the images.
So far we have not had any other issues with it.
Can you give us any insight as to how any of this happened?
Both pages were set up at the same time and with the same settings.
Another thing I noticed is that the automatic resize has stopped working. We stress to our customers that they need to resize the images first, but they often ignore us. It was working, but the last few images weren’t resized even thought the setting hasn’t changed.
I can see the thumbs in the manage gallery area, but they don’t show on the front.
The plugin we use covers WooCommerce, BuddyPress, UltraCommunity and Contact Form 7/Gravity Forms. The Cerber AntiSpam Engine is not robust enough for our needs.
I will load the development version onto a site and let you know how that went.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 (Version 4.8) – Sending does not workHow is there still no fix for this? CF7 now has an update for 4.8.1 and the conflict still persists.
Forum: Plugins
In reply to: [WooCommerce] Add Faux Gateway with Two Fields for Admin ONLYTHANK YOU!
Forum: Plugins
In reply to: [WooCommerce] Add Faux Gateway with Two Fields for Admin ONLYPlease help. Really needing some type of hint…
https://gist.github.com/SiR-DanieL/2147d4b9d69d5fae9a2f
For future visitors, I’d like for them to know that I tweaked this code found on the same Github link to match the fields I needed. Then, modified it for shipping fields. Great source!
add_filter( 'woocommerce_formatted_address_replacements', 'custom_formatted_address_replacements', 10, 2 ); function custom_formatted_address_replacements( $address, $args ) { $address['{company_dept}'] = ''; $address['{company_title}'] = ''; if ( ! empty( $args['company_dept'] ) ) { $address['{company_dept}'] = $args['company_dept']; } if ( ! empty( $args['company_title'] ) ) { $address['{company_title}'] = $args['company_title']; } return $address; }The code above was what I needed to get the address format to display correctly.
Thank you! I was able to find my solution (:
Forum: Plugins
In reply to: [WooCommerce] Coupon Removed Notice is Not AppearingOkay, thank you! As long as the notice will be there eventually, all is well in my world. At least I have an explanation for our client.
Thanks once more! Marking as resolved.
Forum: Plugins
In reply to: [WooCommerce] Coupon Removed Notice is Not AppearingYay! Thank God, I thought I was losing my mind!
Should I add this to my child functions or the core WC file?
I’d like the notice to show, but not comfortable with using the github beta version just yet, and if this change is coming into an update in the future, then I’m better off updating core WC right? Since it will be overwritten anyways?