How to remove 'description' from Buy Button on product pages?

Hi all, I have the word “description” built into my Buy Button on product pages but I cannot remove it. I do not know why it is there and I cannot find a way to remove it in the code without also removing the Add To Cart button. Here is a product page on my website for reference: https://searedliving.com/products/salami-picante-w-cognac-3-oz-charlitos-cocina

I am very confused how it even got there so any help on how to remove the word “description” from the add to cart section would be great! Thanks

Hi @Rikkipilewski
The first please try to check section settings in theme customize.
I think it from one of block in main product section.
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css

.product-form .station-tabs{
display: none!important;
}

Hi @Rikkipilewski ,

Go to Assets > base.css and paste this at the bottom of the file:

.product-form .station-tabs-tabset {
    display: none !important;
}

Hope it helps!

Hello @Rikkipilewski

I would like to give you some recommendations to support you
Following these steps:

  1. Go to the Sales channels > Online Store

  1. Click this button (image below) > Edit code

  1. Open theme.liquid file > find and add this code above it

  1. Save it

Hope my recommendation can work and support you!
Kind & Best regards!
GemPages

This worked, thank you!!