The latest version of WooCommerce has removed support for the mini cart widget on the Cart page, along with its scripts.
Seeing how our cart widget followed this WooCommerce functionality and used the same functions and scripts, we also decided to do the same and remove the support for our dropdown cart widget and its scripts on the Cart page.
Therefore, if you are not seeing the cart widget on the Cart page, this is due to the fact that we had to disable it.
However, there is an easy fix for this issue. Depending on the author profile your specific theme comes from (Edge, Select, Mikado, Elated or QODE), you can navigate to Appearance > Customize > Additional CSS and input the following profile-dependent custom CSS:
Qode Profile:
.woocommerce-cart .shopping_cart_outer {
display: none;
}
Elated Profile:
.woocommerce-cart .eltdf-shopping-cart-holder {
display: none;
}
Select Profile:
.woocommerce-cart .qodef-shopping-cart-outer {
display: none;
}
/*OR*/
.woocommerce-cart .shopping_cart_outer {
display: none;
}
Mikado Profile:
.woocommerce-cart .mkdf-shopping-cart-holder
display: none;
}