Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #991166

    Hallo
    ich habe das Thema Enfold und habe zur Zeit eine Lokaleinstallation und würde gerne auf jeder Seite ein eigenes Hintergrund-Bild für den Body
    sowie für jede Seite ein eigenes Logo einfügen, für Main-Content und Alternate Content für jede Seite eine andere Farbe, ebenso für den Footer und den Socket jede Seite eine andere Farbe benutzen. Was muss ich tun, damit ich dieses reallisieren kann.
    Meine Versuche die css mit dem Google-Tool “Untersuchen” hat funktioniert bekomme dann aktuell immer die Änderungen angezeigt, stelle ich den Code dann in WordPress rein geht er nicht.
    Meine Fragen sind wie lauten die css classen für diese Bereiche.
    LG Marion

    in englisch übersetzt mit Übersetzungsprogramm, da ich kein Englisch kann. Sorrry
    in english translated with translation program, since I can not speak english. sorrry
    Hello
    I have the theme Enfold and currently have a local installation and would like to have a separate background image for the body on each page
    insert a separate logo for each page, a different color for main content and alternate content for each page, as well as a different color for the footer and the socket each page. What do I have to do to realize this?
    My attempts the css with the google tool “Examining” has worked then get up to date always the changes indicated, I place the code in WordPress purely it does not go.
    My questions are what are the css classen for these areas.

    LG Marion

    #991692

    Kann mir keiner helfen

    #991766

    Hi,

    Unfortunately, it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Basilis

    #1044402

    Ich kann dir zwar nicht helfen dabei, aber sowas hat mir der Mann auch schon mal gesagt, obwohl die Lösung im Forum dann noch ähnlich auffindbar war. Er scheint eine Art Türsteher zu sein ;-)

    #1044409

    Nun – du solltest die Logos gut für verschiedene Seiten über die child-theme functions.php setzen können:

    // Logo für verschiedene Seiten setzen
    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo){
        if( is_page(21) ) {
        	$logo = "http://www.domain.com/wp-content/uploads/logoforpage21.jpg"; 
        }
      
        elseif ( is_page( array( 42, 54, 6 ) ) ) {
        	$logo = "http://www.domain.com/wp-content/uploads/logoformultiplepages.jpg"; 
        }
        
        return $logo;
    }
    
    // das ist das Logo welches im Falle der Transparenz eingesetzt wird
    add_filter('avf_header_setting_filter','replace_transparent_logo_on_some_pages');
    function replace_transparent_logo_on_some_pages($header){
        if( is_page(21) ) {
            $header['header_replacement_logo'] = "https://url-to-the-new-logo";
        }
        elseif ( is_page( array( 42, 54, 6 ) ) ) {
        	$header['header_replacement_logo'] = "https://url-to-the-multiple-page-logo";
        }
    
        return $header; 
    }

    bein diesen Conditional Tags kannst du alles einsetzen, was im Codex erwähnt wird – auch mit nicht funktion: Link

    Die Hintergründe : background-image – solltest du im Quick css setzen können – wobei dann die Classe der Seite mit eingefügt werden sollte.
    – die ist bei enfold immer am body ( bzw #top – bitte keine Leertaste dazwischen ) also über zB:

    
    #top.page-id-206 {
    background-image …
    }

    je nachdem wo du deine Images einsetzt.

    • This reply was modified 5 years, 11 months ago by Guenni007.
Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.