Remove Pricing in WooCommerce

PHOTO EMBED

Fri Sep 13 2024 15:44:57 GMT+0000 (Coordinated Universal Time)

Saved by @KaiTheKingRook

/* Remove Second Pricing & Add Starting At to Product Page */
.single-product span.woocommerce-Price-amount.amount {
    margin-right: -100vw !important;
    background-color: #fff !important;
}
.single-product p.price::before {
    content: "STARTING AT";
    font-size: 0.79vw;
    color: black !important;
    font-weight: 600;
    padding-right: 0.79vw;
}
.single-product p.price span.woocommerce-Price-amount:nth-of-type(2) {
    display: none;
}
content_copyCOPY