Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #934318

    Das findet man… neben vielen anderen Fragen und Antworten, die ebenfalls nicht weiterhelfen.

    Hi,
    I’d like to customize the Error 404 page, but I cannot find it. Where is it?
    September 17, 2013 at 12:11 pm
    #162218

    Yigit
    Moderator

    Hi,

    In your WordPress theme directory you should go to Enfold > 404.php file and Enfold > Includes > Error404.php file

    Regards,
    Yigit

    Wie geht es nun? WordPress theme directory??? Wo soll das sein, wie kann man dann anschließend Änderungen vornehmen, wenn es sich bei der 404 nicht um eine Seite handelt? Und warum ist es nicht einfach als Seite zu behandeln?

    Alles super… doch das 404-Thema scheint, ein hochkompliziertes sein zu müssen.
    Herzlichen Dank im Voraus! Grüße, Jorg

    #934531

    Hey Pronto-Business_123,

    Could you please post in English the question and we will be more than happy to help you?

    Thank you

    Best regards,
    Basilis

    #934823

    Hi Basilis,

    thank you for your answer. Is there really no easy way to change the 404 content?
    How can I find the 404.php file. How is it to edit without HTML-expertise? For example, insert photos….
    Thank you in advance
    Regards
    Jorg

    #935290

    Hi,

    Thank you for the update. Please create a custom page with the advance layout builder, and use the following code to redirect the default 404 page to the custom page. Just add it in the functions.php file.

    add_action('wp_head', 'wp_head_redirect_404');
    function wp_head_redirect_404() {
    	if(is_404()) {
    		echo header("HTTP/1.1 301 Moved Permanently");
    		echo header("Location: https://www.site.com/your_custom_page");
    		exit();
    	}	
    }

    Replace the “Location” value with the url of the custom page.

    Best regards,
    Ismael

    #935305

    Hi Ismael,
    cool, thank you very much!!!!
    Regards
    Jorg

    #935693

    Hi,

    Glad we could help :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #935694

    Hi,

    Glad we could help :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1176707

    hallo, ich habe es leider immer noch nicht ganz verstanden…
    ich lege einfach über enfold eine neue Unterseite an und lösche alle Inhalte im 404.php und füge das oben geschriebene snippet ein?
    dann funktioniert alles und wenn jemand eine Seite aufrufen möchte, die es nicht gibt, dann erscheint meine neu desinte seite?

    Im Voraus vielen Dank für eure Hilfe

    #1177089

    Hi vonBeuningen,

    This thread is old so you shouldn’t need to do this anymore, there is an option to set a custom 404 page on the main page of the theme options now. Please have a look at that.

    Best regards,
    Rikard

    #1177132

    hi Rikard,
    Thanks for the information :-)

    I hav built a page and entered the name to the options in enfold.

    Do I have to do something else?

    #1177443

    Hi vonBeuningen,

    No, that should be it :-)

    You can try it out by visiting a URL which doesn’t exist on your site to see if it’s working or not.

    Best regards,
    Rikard

    #1224172

    Hi Rikard,
    ich habe auch noch eine Frage bezgl. der 404 Seite.

    Habe eine 404 Seite erstellt und zugewiesen aber der Permalink ist 404-2, wie lässt sich diese zu 404 abändern?

    Im Seitenbereich lässt sich der Permalink leider nicht abändern…
    —————————–
    Die andere Seite, wo der ander Link hinverlinkt siehe unten, soll es gar nicht geben, wo lösche ich das???

    Danke

    #1224337

    Hallo frosch178,

    If you can’t change the permalink to 404 then that means something else is using that, it could be a page in the trash for example? It could also be a category, tag or similar which is using that slug. If you need further help then please post admin login details in private so that we can have a closer look.

    LG,
    Rikard

    #1224356

    in this context please explain the difference between the two possibilities:
    “Display selected page withour redirect” – and – “Redirect to selected page”

    #1225246

    Hi,

    The “Redirect to selected page” uses the wp_redirect function while the other returns a query containing the id of the 404 page and the corresponding 404 template. Functions can be found in the themes\enfold\includes\class-avia-custom-pages.php file.

    Best regards,
    Ismael

Viewing 15 posts - 1 through 15 (of 15 total)
  • You must be logged in to reply to this topic.