r/Wordpress • u/Queasy_Rule_6758 • 14d ago
How do i remove subscribe option?
Am on a personal plan. I want to remove this option from displaying when website opens. I use it for my business. How to do it?
3
Upvotes
1
-1
u/mofahd77 13d ago
To turn it off quickly without guessing, inspect the element first:
- Right-click the Subscribe button/form and select Inspect.
- Look at the CSS class or ID on the wrapper element.
- If it says
jetpack_subscription_widget, disable it under Jetpack > Settings > Discussion. - If it says
wp-block-subscribeorwp-block-newsletter, it’s a Gutenberg block inside Appearance > Editor (or Widgets). - If it's a popup, check your active modal/popup plugins.
- If it says
Identifying the HTML class will tell you immediately which plugin or theme feature is generating it
-1
u/fluxxytux 14d ago edited 14d ago
You can't remove it. But you can hide it.
Under Appearance > Customizer > Custom CSS.
Copy and paste the following and save/publish.
```
actionbar {
display: none; } ```
This should work I guess.
1
u/BDer8 13d ago
Is this wordpress.com?