OK no responses, but I found a fix which is to use the Additional CSS capability in Customize. Looking at the HTML source, the button’s HTML is:
a class=”btn btn-large btn-primary” href=”#”
Subscribe
/a
(Sorry for some reason I can’t get less than and greater than to display correctly even with HTML entity substitutes)
I then inserted a class in the Additional CSS for class btn-primary and set it to display: none.
.btn-primary {
display: none;
}
This removed the button from view.
-
This reply was modified 5 years ago by dshenwp.
-
This reply was modified 5 years ago by dshenwp.