Hi
I would like to change the 404 page. Can you please tell me where I can edit this?
I want to change the word post to page. Plus I want to remove the Feel like browsing some posts instead etc.
Thanks in advance.
Sharon
The code of the 404 page can be found in wp-contentthemesenfoldincludeserror404.php
Replace:
<?php _e('Sorry, the post you are looking for is not available. Maybe you want to perform a search?', 'avia_framework'); ?>
with
<?php _e('Sorry, the page you are looking for is not available. Maybe you want to perform a search?', 'avia_framework'); ?>
and delete
<h3 class=''><?php _e('Feel like browsing some posts instead?', 'avia_framework'); ?></h3>
Thanks for that Peter.