• Hello, when we clic en Ver Carrito (View Cart) on the Mini Cart, it show a blank page with html code, we disable all the plugins and keep getting the problem, we change the theme, and work again, so i guess there is a problem right now with Astra, here are the screenshots, here is a video of the error – > https://share.nmblc.cloud/9094db91

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello, have you looked in the Woocommerce settings which page is set as the shopping cart?

    Hi @bprado,

    Our developers have identified that the issue stems from a conflict with the Beaver Builder plugin. While we’ve identified the root cause, we are currently working with the Beaver Builder support team to implement a fix in an upcoming update.

    In the meantime, you can use the following filter as a temporary solution by adding it to the functions.php file of your child theme:

    /**
     * Function to rollback WooCommerce cart URL for Astra compatibility.
     */
    function astra_woocommerce_cart_url( $cart_url ) {
        if ( function_exists( 'wc_get_page_permalink' ) ) {
            return wc_get_page_permalink( 'cart' );
        }
        return $cart_url;
    }
    add_filter( 'woocommerce_get_cart_url', 'astra_woocommerce_cart_url', 99 );

    You can refer to this [documentation] for detailed instructions on adding custom code to the functions.php file of your child theme.

    Kind regards,
    Aradhy

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