function conditionally_hide_buttons() {
// Check if WooCommerce is active
if ( class_exists( 'WooCommerce' ) ) {
$cart_count = WC()->cart->get_cart_contents_count();
if ( $cart_count == 0 ) {
echo '<style>
.elementor-element.elementor-element-c7e7fe0.e-con-full.elementor-hidden-tablet.elementor-hidden-mobile.jedv-enabled--yes.e-flex.e-con.e-child,
.elementor-element.elementor-element-7840d6f2.e-con-full.jedv-enabled--yes.e-flex.e-con.e-child,
.elementor-element.elementor-element-395cc4ef.elementor-hidden-desktop.e-flex.e-con-boxed.e-con.e-child {
display: none !important;
}
</style>';
}
}
}
add_action( 'wp_head', 'conditionally_hide_buttons' );