Custom 404 page

Does anyone know what CS-Cart file/template is the 404 page? I’d like to modify it. I searched both in the Knowledge Base and in the forum and didn’t see any posts on this. Thanks.

It’s in the “exception.tpl” file in the “customer” section of your skins folder.

Thank you. I looked at that file, and I’m not sure though, if that’s the one I need to modify. What I want to do is just add some text. And I couldn’t figure out where in that file to add text.

Got it. In side the file, you’ll see some if statements:


```php


{if $exception_status == "403"}
{$lang.access_denied}
{elseif $exception_status == "404"}
{$lang.page_not_found}
{/if}


```

and

```php
{if $exception_status == "403"}

{$lang.access_denied_text}


{elseif $exception_status == "404"}

{$lang.page_not_found_text}


{/if}
```

Each of these has a "404" section. Each contains a language variable. They are:

$lang.page_not_found
$lang.page_not_found_text

Do a search in "Content"->"Languages" in the admin and edit the text.

THANK YOU!!! Worked great!