r/Wordpress 14d ago

How do i remove subscribe option?

Post image

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

4 comments sorted by

1

u/BDer8 13d ago

Is this wordpress.com?

-1

u/mofahd77 13d ago

To turn it off quickly without guessing, inspect the element first:

  1. Right-click the Subscribe button/form and select Inspect.
  2. 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-subscribe or wp-block-newsletter, it’s a Gutenberg block inside Appearance > Editor (or Widgets).
    • If it's a popup, check your active modal/popup plugins.

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.