alienjackhammer
Forum Replies Created
-
Thank you for the update!!
We are getting intermittent checkout failures. The plugin logs show the failure occurs when attempting to save a new card to CIM during checkout:
- Request:
createCustomerPaymentProfileRequest - Response:
E00114 Invalid OTS Token - This happens after
Retrieved opaque card dataand after validating the customer profile (getCustomerProfileRequestOK). - The plugin aborts payment when saving fails:
Payment processing failed … error_message: Invalid OTS Token … is_store_api: false
Request: Please update the flow so that if CIM save fails with E00114, the plugin still charges the order using the opaque data (or changes sequence: create payment profile first, then charge via profile), instead of failing the entire checkout. Also confirm whether the plugin is reusing the opaqueData token across multiple API calls or delaying token use long enough to expire.
Thank you. I apologize. It must have went to my spam.
I used my purchasing account (search66@gmail.com) to open two tickets. It’s been about a month since my last one. And the TOC JS was injecting itself into my site even though it wasn’t in use. I ended up writing a code snippet to remove it.
/**
- Smart Dequeue for AIOSEO Table of Contents (Pro & Free)
- Scans registered scripts for the specific TOC file and removes it.
*/
function fuzion_remove_aioseo_toc_smart() {
global $wp_scripts; if ( ! is_a( $wp_scripts, ‘WP_Scripts’ ) ) {
return;
} foreach ( $wp_scripts->registered as $handle => $script ) {
// Check if the script source URL contains ‘table-of-contents’ AND ‘all-in-one-seo’
if ( strpos( $script->src, ‘table-of-contents’ ) !== false && strpos( $script->src, ‘all-in-one-seo’ ) !== false ) {
wp_dequeue_script( $handle );
wp_deregister_script( $handle );
}
}
}
// We use a late priority (100) to ensure we run AFTER AIOSEO has added the script
add_action( ‘wp_enqueue_scripts’, ‘fuzion_remove_aioseo_toc_smart’, 100 );
add_action( ‘wp_footer’, ‘fuzion_remove_aioseo_toc_smart’, 1 ); // Double check for footer scripts
I open two tickets before on the official site and “priority support” ticket. I never got a response. Basically, AIOSEO was loading bloated scripts (Table of Contents JS) being injected even though I dont use TOC blocks. I ended up just writing a script to block it.
Although I appreciate you replying to my “review”; people should be aware that “Premium” does not really mean “Premium support”. Your software is good, but highly bloated. (for example the TOC JS) And opening two tickets with zero response is well… Unacceptable. I really hate busting a companies balls, but…. I hate buying software and then you have to pay more to unlock other features… crazy model that I loath. And then having a big flashy “PRIORITY SUPPORT UNLOCKED” and never responding to tickets; is a big red flag.
No. I thought the newest updates to woocommere and/or wordpress would have fix it… Still in the same boat.
Forum: Plugins
In reply to: [WooCommerce] Checkout blocks show as Unsupported in editorinteresting. I’ll deactivate my payment plugin and see what happens.
Forum: Plugins
In reply to: [WooCommerce] Checkout blocks show as Unsupported in editorThanks for the clarification. Given the earlier issues where Cart and Checkout blocks were rendering as Unsupported in the editor, I’m going to avoid transforming into blocks… I’ll just live with the ability not to edit the cart/checkout and maybe down the road an update will fix it. Not sure, honestly.
Forum: Plugins
In reply to: [WooCommerce] Checkout blocks show as Unsupported in editorThis is odd for sure. Went to add a new page and the only option I had for checkout is “classic checkout”. But I’ve never seen a pop-up like this (see attached).
Forum: Plugins
In reply to: [WooCommerce] Checkout blocks show as Unsupported in editorI will try adding a new page with a checkout block and see what happens. As far as pressing the button… It automatically installs some plugin called Fluid Checkout (which is odd).
Forum: Plugins
In reply to: [WooCommerce] Checkout blocks show as Unsupported in editorI used the Twenty Twenty Four theme.

Forum: Plugins
In reply to: [WooCommerce] Checkout blocks show as Unsupported in editorI put activated a new theme and disabled plugins; still same issue.
Forum: Plugins
In reply to: [WooCommerce] Checkout blocks show as Unsupported in editorThanks for the reply. To answer the one question about what triggered this; it’s hard to say really. I rarely go into editing these pages. For the record this is also happening with the “cart” page.
I’ll try what you suggested and get back to you. I do appreciate the help in getting this resolved.
I’ll give it a shot. Thanks.
Forum: Plugins
In reply to: [WooCommerce] Checkout blocks show as Unsupported in editor - Request: