• danielk000

    (@danielk000)


    I did everything to try to make this plugin work, even contacted Cart Flows’ support (offering to pay for support), and only keep discovering new bugs and issues. I’m running most basic website with Elementor, but have experienced the same issues with Avada theme & no Elementor either.

    Issue #1: it adds display:none to woocommerce notices, so customers cannot see a notification when they add a product to cart. It also blocks the cart from automatically opening.

    Issue #2: it adds some code that prevents the most basic Elementor page to open the main menu on mobile.

    Issue #3: doesn’t add variations unless they’re loaded as Product Archives (only add variations on the shop page and product-specific pages – does not add variations if you want to display products on your home page).

    Issue #4: conflicts with Gravity Shop Product Configurator – doesn’t display variations at all and requires tons of custom CSS to fix.

Viewing 1 replies (of 1 total)
  • Plugin Support Shravan Bhaskaravajjula

    (@bhshravankumar)

    Hello @danielk000,

    We sincerely apologize for any frustration you’ve experienced. We understand how important it is to have your concerns addressed promptly and effectively.

    We have responded to your support ticket (#205323) on our support portal using support@cartflows.com, but haven’t received a reply from you. We have shared our findings and provided the filter code to show variations on any page. Please check and reply to the support ticket so that we can assist you further.

    Issue #1: We do not add “display” to WooCommerce notices or prevent the cart from opening automatically. This must be a conflict with another plugin or theme.

    Issue #2: We tried to replicate the issue on our end using the Avada theme and Elementor, but we could not see the problem on the mobile menu. Here is a reference screen recording for your review: Screen Recording.

    Issue #3: By default, the variation swatches work on the default WooCommerce shop/archive pages and product pages. If you want to display the swatches on other pages, you can enable it on any page by using this filter. Add it to your child theme’s functions.php or use a code snippets plugin.

    add_filter( 'cfvsw_requires_shop_settings', function( $status ){
    if( is_page() ) {
    return true;
    }
    return $status;
    });
    is_page can be replaced by the desired condition.

    Issue #4: Regarding the issue with Gravity Form, it appears to be related to a CSS conflict causing layout issues. We have requested you to share the URL of the product page with us so we can investigate further.

    We are committed to resolving these issues for you. Please let us know if you need any further assistance, and we’ll do our best to help.

    Thank you for your patience and understanding.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this review.