> For the complete documentation index, see [llms.txt](https://shoppad.gitbook.io/bouncer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://shoppad.gitbook.io/bouncer/customize-bouncer/edit-bouncers-text.md).

# Edit Bouncer's text

By default, the Bouncer age verification pop-up displays with two buttons (one that says **Enter**, and the another that says **Exit**), and a month, day, and year drop down menus. If you have selected to verify with Facebook, it will also display a Facebook verification button.

Follow the steps below to change the text of the buttons and month names.

### Edit your store's code

1. Starting from your Shopify admin dashboard, click on **Online Store**, then click on **Themes.**
2. Find the theme you want to edit, click the **Actions** button, then click **Edit code.**

<figure><img src="https://2517649757-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FcecHJkk34GD5l2Fs6AtE%2Fuploads%2Fgit-blob-e4b6ebe28cce1a34132fa88c7ed600c4b96600a5%2FScreenshot%202025-09-10%20at%203.48.42%E2%80%AFPM.png?alt=media" alt=""><figcaption></figcaption></figure>

### Add the snippet to your theme

1. On the left side, under the **Layout** heading, click on the *theme.liquid* file.
2. Copy the following code snippet.

```
<script>
  window.Shoppad = window.Shoppad || {},
  window.Shoppad.apps = window.Shoppad.apps || {},
  window.Shoppad.apps.bouncer = {
    strings: {          
      exit: 'XXXXX', //replace XXXX with your translation. Do not remove the quotes.
      enter: 'XXXXX',
      facebook: 'XXXXX',
      months: [
        'January',
        'February',
        'March',
        'April',
        'May',
        'June',
        'July',
        'August',
        'September',
        'October',
        'November',
        'December'
      ]
    }
  };
</script>
```

3. Paste it directly after the **\<head>** tag.

4\. Replace the text within the quotes (XXXXX) with your desired messaging (don't remove the quotes!).

5\. Translate the months to your desired language.

6\. **Save** your changes.
