Is there a way to get rid of this

I was wondering if there was a way to get rid of this…

image
it seems a little redundant since this does the same thing…

Thanks,
Tim

Yes, that button can be hidden in that theme by adding a little custom CSS. Click Design → Edit CSS and add something like this:

.cta {
  display: none;
}

(“cta” is the class name for that particular button.)

1 Like

Thanks, @manton that worked perfectly.