Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #441461

    Liebes Kriesi-Team,
    wir nutzen seit einiger Zeit das Enfold – Theme in unserem WordPress.
    Nun haben wir ein Child- Theme angelegt, da wir folgendes verwirklichen wollen:
    – Eine einzelne bestimmte Seite, inkl. aller ihrer Unterseiten, soll farbliche Anpassungen von Background und Schriftfarben erhalten
    – Auf diesen Seiten soll außerdem ein anderes Logo, als in der sonstigen Web angezeigt wird, im Header benutzt werden.
    Wir hatten schon überlegt, ob das über ein Seiten – Template eventuell möglich ist. Wenn ja, wie könnte ein möglicher Lösungsweg aussehen, oder wie sonst.
    Danke für die Unterstützung!
    Matree, Luxususer

    English with automatic translator:
    Dear Kriesi team
    we use for some time the Enfold – Theme in our WordPress.
    Now we have a Child- Theme created because we want to realize the following:
    -. A single specific page, including all its sub-pages to get color adjustments of background and font colors
    – On these pages also to a different logo, will be displayed as in the other web, be used in the header.
    We had been wondering whether that has a side – is eventually possible template. If so, how could look like a possible solution, or as otherwise.
    Thanks for your support!
    Matree, luxury User

    • This topic was modified 9 years, 6 months ago by Luxususer.
    #442194

    Hi Luxususer!

    Thank you for using Enfold.

    1.) You can use the color section element to create different pages with different background colors.

    2.) Use this in the functions.php file if you want to add a different logo in another page:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo) {
        if(is_page(59) ) {
        $logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
        }
        return $logo;
    }

    Adjust the page id. You can add multiple conditional functions.

    Best regards,
    Ismael

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