Frequently
Asked Questions

General

Do readers see all past newspushes?

Your readers are able to view and read all newspushes that have been published in your app, providing them with a great experience from the beginning.

How much does it cost to create my app?

Your newspushes app is completely free to create. The only costs are for the newspushes you send, which have a generous free tier.

Visit the Pricing page for more information.

Can I customize the look of my app?

Your app is beautifully branded with your logo. Further customizations are not yet possible at this time in order to ensure a great user experience.

However, we will slowly be introducing more customizations, and you are welcome to contact us with any suggestions you have.

Advanced

How can I hide/show specific content in my newspush?

All newspush html content is rendered inside:

  <body id="np-body"></body>
<body id="np-body"></body>

This will allow you to hide content in your newspush that is designed solely for email newsletters, e.g. using css:

  body#np-body .email-only-content {
      display: none;
  }
body#np-body
.email-only-content {
    display: none;
}

You could also show content in your newspush that can be hidden in email inboxes, e.g. using css:

  body:not(#np-body) .newspush-only-content {
      display: none;
  }
body:not(#np-body)
.newspush-only-content {
    display: none;
}

You are welcome to use #np-body to control your newspush content and styling as you like.

May I create an extra account to test newsletter code edits?

You are more than welcome to create a newspushes account to get an app for testing code edits to your newsletter content.

Have a different question? Get In Touch