pattyok
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Square] Intermittent Duplicate OrdersI ran some logs on the woocommerce_checkout_order_created hook and I saw four orders get created from one order. They are all coming from the same ip address, different session, but same cart. One was exactly one minute form the first one, then fifteen minutes later and then 13 minutes after that?
[CHECKOUT DEBUG] Order #141505 created | Session: t_a147c6963fe9bce0c51931c8aebeb6 | Cart Hash: a7eb26e30344d497a3cfaee23a6c726b | Time: 2026-04-13 14:36:25 | IP: xx.xx.xx.xx
[CHECKOUT DEBUG] Order #141496 created | Session: t_a147c6963fe9bce0c51931c8aebeb6 | Cart Hash: a7eb26e30344d497a3cfaee23a6c726b | Time: 2026-04-13 14:35:25 | IP: xx.xx.xx.xx
[CHECKOUT DEBUG] Order #141523 created | Session: t_a147c6963fe9bce0c51931c8aebeb6 | Cart Hash: a7eb26e30344d497a3cfaee23a6c726b | Time: 2026-04-13 14:50:29 | IP: xx.xx.xx.xx
[CHECKOUT DEBUG] Order #141534 created | Session: t_e60039b30df0ad08ab36d4c3747933 | Cart Hash: a7eb26e30344d497a3cfaee23a6c726b | Time: 2026-04-13 15:03:48 | IIP: xx.xx.xx.xx
Forum: Plugins
In reply to: [WooCommerce] Sales Tax Configuration with Varying Tax RatesThis is very close to the scenario presented here:Scenario 5 outlined in the documentation.
From that article:
This documentation needs to be updated to clarify when this would actually work.
This did work for about a week on two different sites. I had multiple people testing it around the first week of October. It stopped working – the rates in the table got overwritten – sometime after that.@kjvextras I have turned diagnostics on, I currently have Sync new non-subscribed contacts, turned off, so the issue does not replicate. If I turn that on, we lose subscribers, let me know when you are working on this and I can switch it temporarily (will not take a week this time :)).
The issue happens when I sign up as a user through the mailing list form on the site and then make a purchase.Forum: Plugins
In reply to: [Anti-Spam by CleanTalk. Spam protection] Anti-Crawler Splash ScreenI had a couple browser windows open testing something, so maybe that triggered it?
For the other admin, they just opened up the site in normal mode and got it too.I ended up loading the scripts manually and not using viewScript. But there seems to be some conflict between this plugin and the WordPress block.json viewScript functionality.
The thumbnail settings were not square. I updated that and it works now. I didn’t see that tip in your documentation. Maybe add that to this page?
It appears that the original image needs to be square as well as the thumbnail settings for this to work.
- This reply was modified 3 years, 11 months ago by pattyok.
I disconnected tag manager and reconnected the Google Analytics and now the UA tag is showing up in tag assistant and it seems to be tracking…
Forum: Fixing WordPress
In reply to: Getting a blank search pageWelp I figured this out, though Im not sure exactly why it ended up causing the problem.
I had, early on in working on this site, experimented with a full site editing theme. That created an entry in the database of a post type ‘wp_template’. That template was associated with a different theme though, so thats the part I dont understand, but deleting that entry in the database fixed the problem.
Forum: Plugins
In reply to: [Post Type Switcher] Bulk option doesnt appear!If you are using Admin Columns and have customized your view, you just need to make sure that Post Type (labeled Type) is one of the columns in your view, then you will get Post Type option in the quick edit and bulk edit screens.
- This reply was modified 5 years, 8 months ago by pattyok.
This is still an issue for me, any other thoughts on a fix?
Doing that causes the response from the wp-json request to be null…
Forum: Fixing WordPress
In reply to: WordPress 5 no option for parent under page attributesAh Actually for me I found the Culprit to be the Gallery Custom Links plugin. When that plugin is active and a link is applied to the gallery. Pages are not formatted correctly in the wp-json response which breaks any wp-json pages request.
Forum: Fixing WordPress
In reply to: WordPress 5 no option for parent under page attributesI have found this to be consistently true after upgrading to 5.2.2. The parent page dropdown is nowhere to be found on Pages using the Block Editor.
Ive tested on a clean site with no plugins.
I couldnt find any bugs opened for this specific issue, so I opened one….
Forum: Fixing WordPress
In reply to: Accidentally added a different page as homepage – please helpDid you use a redirect tool to add the redirect? 301 redirects get cached at multiple levels in a way that can be difficult to clear. If you try a different browser are you seeing the results as intended?
For the missing admin bar… It could mean that there is an error in your code… if you add
define( 'WP_DEBUG', true );to wp-config.php do you see any errors?Or are you using any kind of role manager plugin? Some of those plugins allow you to specify whether the black bar is displayed for a particular role.
Forum: Fixing WordPress
In reply to: Migrating new theme from development to live siteYou will first need to update your theme files in the live environment. Connect via FTP and push your updated theme files to the live server.
To make changes to the pages you can do them manually or if the changes are isolated to a specific post type you can export those posts from your local environment and import on the new environment.
Since you havent done this before it might be a good idea to do a practice run. Make a copy of the live site, bring it down locally and then update that site with your theme files.