• Resolved SushiWP

    (@sushihost)


    I have an issue where the related products section is showing on the cart page when I don’t want it to. Not only that but it also shows in a corrupted view.

    https://share.cleanshot.com/HQkNqjLs

    “Show related products in cart” is unchecked. Any ideas?

    Thanks,

    Bob

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support WebToffee Support

    (@webtoffeesupport)

    Hi @sushihost ,

    Greetings from WebToffee Support!

    It sounds like a caching issue might be causing the related products section to appear on your cart page. Please try clearing your cache and check if the problem persists.

    Additionally, could you please share the WooCommerce System Status report? You can find this by navigating to WooCommerce > Status > Get System Status Report. This will provide us with details about your site environment, helping us to investigate further.

    If you have any privacy concerns, you can share the required information through this secure link.

    Looking forward to your response.

    Plugin Support WebToffee Support

    (@webtoffeesupport)

    Hi @sushihost ,

    We haven’t heard back from you for a while. It appears that the issue you’re experiencing might be caused by a theme conflict. To disable the display of the related products section on your cart page, you can use the following code snippet:

    add_action('wp_footer',function(){
    if(is_cart()){
    ?>
    <style>
    .wt-related-products-cart { display: none; }
    </style>
    <?php
    }
    });

    You can add this code to your active theme’s functions.php file by navigating to WordPress Dashboard > Appearance > Theme File Editor > functions.php , or you can use a code snippet plugin for easier implementation.

    Once this snippet is implemented, the related products section should no longer appear on the cart page.

    If you need any further assistance, feel free to reach out!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.