Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter stefanomarzi

    (@stefanomarzi)

    Update: I just saw that from the page header the litespeed cache is disabled for checkout.

    I also try to deactivate fluid checkout plugin and the woocommerce stock checkout work properly

    Why does this conflict occur?

    • This reply was modified 1 year, 1 month ago by stefanomarzi.
    Plugin Author Diego Versiani

    (@diegoversiani)

    Hi @stefanomarzi,

    I tested and was able to use the plugin with Litespeed on a local development environment without any issues.

    I do not have a server environment with Litespeed that I could test it on right now.

    1. Could you send us a screenshot of the issue on the checkout page?

    This could also be related to specific settings of Litespeed you might be using.

    2. Could you screenshots of the settings you have configured on your website for the Litespeed plugin?

    If you would rather not share it publicly here, please open a (private) support ticket on our main support channel:
    https://fluidcheckout.com/support/

    Best,
    Diego.

    Thread Starter stefanomarzi

    (@stefanomarzi)

    Thanks for the reply, I tried to register on your site but I get an error regarding the acceptance of cookies. So I’ll share the screens here with you.

    In this first photo there is the normal woocommerce checkout and the litespeed plugin activated. The checkout loads correctly and does not give errors (https://ibb.co/KNMkCCq)

    In this second photo, the fluid checkout and litespeed plugins are activated and the checkout does not load (https://ibb.co/VQh1crx)

    The browser console returns no errors

    If you can send me an email address or a form to send the request to, I will forward the litespeed data to you.

    Thank you

    Thread Starter stefanomarzi

    (@stefanomarzi)

    I made an interesting discovery.

    The infinite loading error occurs when product thumbnails are activated in the checkout.

    I deactivated the fluid checkout plugin by putting the woocommerce stock checkout and everything works correctly. I tried to integrate this business bloomer code (which adds the thumbnail to the products):

    /**

    add_filter( ‘woocommerce_cart_item_name’, ‘bbloomer_product_image_review_order_checkout’, 9999, 3 );

    function bbloomer_product_image_review_order_checkout( $name, $cart_item, $cart_item_key ) {
    if ( ! is_checkout() ) return $name;
    $product = $cart_item[‘data’];
    $thumbnail = $product->get_image( array( ’50’, ’50’ ), array( ‘class’ => ‘alignleft’ ) );
    return $thumbnail . $name;
    }

    and the checkout started loading payment forms again and again.

    This is the product images disabled:https://ibb.co/3Fy9q0B

    This is with product images enabled: https://ibb.co/RTzbr0T

    Plugin Author Diego Versiani

    (@diegoversiani)

    Hi @stefanomarzi,

    Thanks for sending the extra information. I’m just back from vacations and will be evaluating this soon.

    Best,
    Diego.

    Plugin Author Diego Versiani

    (@diegoversiani)

    Hi Stefano,

    I see you have a duplicate of this ticket open on our main support channel.

    I’ll go ahead and close this one here, updates will be provided through your ticket on our main support channel.

    Best,
    Diego.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Checkout forms do not load with the Litespeed Cache plugin active’ is closed to new replies.