seetiggergo
Forum Replies Created
-
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Crash the websiteSadly this seems to be quite common in my years of experience with this plugin and their updates. I have the pro version as well and I make sure backups are done prior to any version changes. I cringe anytime there are updates. I just ran the updates in my local development area and staging environment and it crashed both of them. Probably about time to look for an alternative. I just can’t trust this thing anymore. Sad because I like the functionality. I think they need to work on their QA process before releasing these updates.
I hate to keep piling on, but it is indeed messy. I like the direction things went recently, but more has to be done to address these issues. My client does millions of dollars in their store yearly and having UX issues and bugs like this is a big problem. We will probably abandon this solution until things get resolved. It is unfortunate because we do have a sizable amount of customers utilizing Amazon Pay. Hopefully the folks at Automatic are listening and can address these issues sooner than later.
I am seeing this issue as well. Glad you guys were able to set Amazon Pay up as a normal payment method, that was a really nice update! However, forcing the customer to log out of WordPress/WooCommerce then logging back in, just to change a payment method, is a very poor UX. I can’t imagine what that could do to cart abandonment rates. Hopefully this can be fixed in an upcoming release.
- This reply was modified 3 years, 11 months ago by seetiggergo.
That worked! I appreciate it.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Stripe plugin slowing down site@paulschiretz I went ahead and moved it into production and all seems to be functioning properly. We have been receiving orders just fine. This also really helped out the page speed scores. I did see this from Stripe…
To best leverage Stripe’s advanced fraud functionality, include this script (stripe.js) on every page of your site, not just the checkout page. This allows Stripe to detect anomalous behavior that may be indicative of fraud as customers browse your website.
Figured I would keep my eyes on things and see if we see any uptick in fraudulent transactions.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Stripe plugin slowing down site@paulschiretz have you implemented this fix in your environment? Can you confirm it works as intended?
Thanks for the reply. Yes, that is exactly what we did. However, as the plugin developer you should NEVER be letting log files get to that size. They should be purged after a set amount of time or file size, otherwise you run the risk of exactly what happened in our instance… running the disk space out and bringing down a server. Most plugins include some sort of option to enable/disable log files as well as a time limit to keep these log files. I think this would be helpful for future releases to come disabled by default and only enabled if people understand what they are doing.
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Update 1.1.3 – variations not clickableSame problem.
- This reply was modified 5 years, 5 months ago by seetiggergo.
Perfect! Thanks Benjamin
You have to do a few things to make this work…
Lets start with the wpinstagram.php file:
Step 1: Comment out or delete the following (This is the cycle effect javascript and the one that uses absolute positioning on the list item elements)…
wp_enqueue_script("jquery.cycle", $this->wpinstagram_path."js/jquery.cycle.lite-1.5.min.js", Array('jquery'), null);Step 2: Change this…
echo '<ul class="'.$cls .'" style="width: '.$imagesize.'px; height: '.$imagesize.'px;">';To This (This removes the sizing from the element and allows to go full width and height…
echo '<ul class="'.$cls .'">';Step 3: Comment out or remove this function (It is not needed since we are removing the cycle effect…
<script> jQuery(document).ready(function($) { $("#<?php echo $this->id; ?> ul").cycle({fx: "fade", timeout: <?php echo $cycletimeout; ?>}); }); </script>Now on to the wpinstagram.css file:
Replace the ul.wpinstagram li class with the following. (Tweak as needed for your application.)
ul.wpinstagram li{ width: 75px; height: 75px; float: left; clear: right; padding: 5px !important; }That should do it. Now the images should display in a grid rather than a single image with the fade in/out effect.