• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

Need help, header two new menu items

Birkner

Chevereto Member
I already found this here:

However, I would like to insert two new menu items, right, "Datenschutzerklärung" and "Impressum", I need this for a page in Germany.
It would also be nice if the two pages were displayed in the frame, as in contact or privacy.

Can someone help me here, how can I implement this?
 
Hallo,

Folgendes:
Dashboard -> Einstellungen -> Seiten -> Seite hinzufügen (rechts)

Auf diverse Dinge gehe ich nicht weiter ein in dem Menüpunkt.

Typ: Intern
Internal page type: Extra Page
Seitensichtbarkeit: Sichtbare Seite
URL-Schlüssel: impressum
Dateifpad: impressum.php (Speicherpfad liegt in "httpdocs/content/pages/")
QuellCode:
Code:
<?php if (!defined('access') or !access) {
    die('This file cannot be directly accessed.');
} ?>
<?php G\Render\include_theme_header(); ?>

<div class="content-width">
    <div class="c24 center-box">
        <div class="header default-margin-bottom">
            <h1>Mein neues Impressum</h1>
        </div>
        <div class="text-content">
            
            Hier ist mein Text.....

        </div>
    </div>
</div>

<?php G\Render\include_theme_footer(); ?>

Der rest dürfte dann wieder selbsterklärend sein.

Ich hoffe das ich Dir helfen konnte.

Gruß DeCysos
aus Deutschland 🇩🇪


---------------------------------------------------------------------
Translate in english:
---------------------------------------------------------------------
Hi,

Following:
Dashboard -> Settings -> Pages -> Add Page (right)

I do not go on various things in the menu item.

Type: Intern
Internal page type: Extra page
Page visibility: Visible page
URL key: imprint
FilePad: impressum.php (save path is in "httpdocs / content / pages /")
Source Code:
Code:
<?php if (!defined('access') or !access) {
    die('This file cannot be directly accessed.');
} ?>
<?php G\Render\include_theme_header(); ?>

<div class="content-width">
    <div class="c24 center-box">
        <div class="header default-margin-bottom">
            <h1>Mein neues Impressum</h1>
        </div>
        <div class="text-content">
            
            Hier ist mein Text.....

        </div>
    </div>
</div>

<?php G\Render\include_theme_footer(); ?>
The rest should then be self-explanatory again.

I hope that I could help you.

Greeting DeCysos
from Germany 🇩🇪
 
Back
Top