> For the complete documentation index, see [llms.txt](https://ctracker-docs.keywordrush.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ctracker-docs.keywordrush.com/putting-it-on-your-pages/shortcodes/cashback-account.md).

# \[cashback-account]

The member area: balances, cashback history, payout requests and referrals, in one page with its own tabs.

```
[cashback-account]
```

Takes no attributes. Put it on a page, tell Cashback Tracker which page that is, and it handles the rest.

### Setting it up

1. Create a page — *My account*, *Your cashback*, whatever suits your site.
2. Put `[cashback-account]` in it and publish.
3. Point the plugin at it under `Settings`, so its emails and buttons link to the right place.

Step 3 is the one people miss. Without it the page works, but everything that *links* to it does not.

### What it shows

| Tab           | Contains                                             |
| ------------- | ---------------------------------------------------- |
| **Dashboard** | Balances and recent activity                         |
| **Cashback**  | Every order, with its status                         |
| **Payouts**   | Requesting payment, and the history of past requests |
| **Referrals** | Their invite link and who has joined through it      |

Tabs a site has switched off do not appear. On a coupon-only site the whole shortcode renders an "unavailable" notice instead — there are no balances to show. See [Running a coupon site](/running-your-site/coupon-site.md).

### A logged-out visitor

Sees a sign-in prompt rather than an empty page. Cashback Tracker does not ship its own registration form — it uses whatever your site already has, and the **Registration URL** setting decides where people are sent.

### Changing the tabs

Developers can add, remove or reorder them:

```php
add_filter( 'cbtrkr_account_tabs', function ( $tabs ) {
    unset( $tabs['referrals'] );
    return $tabs;
} );
```

`cbtrkr_account_tab_content` filters the body of one. See [Events and hooks](/for-developers/events-and-hooks.md).

### Related

* [The member account page](/members-and-payouts/the-account-page.md)
* [What members see](/members-and-payouts/what-members-see.md)
* [`[cashback-balance]`](/putting-it-on-your-pages/shortcodes/cashback-balance.md)
