Tagged: 404 page
-
AuthorPosts
-
January 4, 2016 at 7:55 am #559045
How can I customize 404 page?
> I know I could find its php in includes folder, but I don’t know how to change its contents, like the text and more importantly deleting all the widgets at the end of the page.
> Plus, the style of menu is different from my website main menu style. How to make it look like the rest pages menu?Thanks in advance
January 4, 2016 at 8:22 pm #559450Hi Sadegh!
Please provide the URL or screenshot for the website with the issue. So we can take a look at it and help you resolve this issue.
Best regards,
VinayJanuary 4, 2016 at 10:12 pm #559527Hi Vinay,
Domain: http://www.i-signage.irAs I said before, in 404 page, you might see the style of menu is different from my website main style. How to make it looks like the rest pages menu?
Plus, I want to remove the widgets at the end of the page and edit some texts.Thanks
January 5, 2016 at 4:42 pm #560007Hi!
At the moment you cannot edit the 404 page from the backend. If you would like to edit the content or the page elements please go to Enfold/includes and edit error404.php file.
Or
We do not support this but incase you might find it helpful please feel free to use a plugin like 404 simple redirect.
Best regards,
VinayJanuary 5, 2016 at 4:44 pm #560010Hi,
And despite that all, how may I change the 404 page menu style to my main menu?
January 6, 2016 at 12:15 pm #560444Hi!
To add page specific menu you can use a plugin like https://wordpress.org/plugins/page-specific-menu-items/
Best regards,
VinayJanuary 6, 2016 at 12:51 pm #560458January 6, 2016 at 2:25 pm #560509Hey!
Please go to Enfold theme options > Advanced Styling and edit “Main menu links”
Best regards,
YigitJanuary 6, 2016 at 2:42 pm #560533Hi Yigit,
I think I couldn’t specify my problem right.
Please see the below images:>> This one is the normal (main) style of my website pages:
>> And this on is the 404 error page style:
I am trying to change 404 page style to the main style.
Any chance to change it easily?January 6, 2016 at 2:49 pm #560538Hey!
No, it is clear but you are using transparent header on your main pages. You could change header styling in Enfold theme option to match similar styling.
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_logo','av_change_logo'); function av_change_logo($logo) { if(is_404()) { $logo = "http://i-signage.ir/wp-content/uploads/2015/12/i-signage-logo-white.png"; } return $logo; }
and add following code to Quick CSS
.error404 #header_main * { color: white; } .error404 #header_main { background-color: #307ecc!important; }
Best regards,
YigitJanuary 6, 2016 at 2:59 pm #560548Thanks Yigit :)
January 6, 2016 at 3:03 pm #560552 -
AuthorPosts
- The topic ‘404 page customization’ is closed to new replies.