Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #873245

    Hallo, kann ich auch die Footer Copyright Zeile in 2 Sprachen verwalten?
    Nütze Polylang.

    https://imgur.com/ZO3iBO2

    http://www.zechmeisterlehen.de

    #873886

    Hey Reinhard,

    Our German support is away right now.
    We would love to help you out, if you can post us in English please.

    Thank you

    Best regards,
    Basilis

    #926502

    Hallo, ist der Deutsche Support wieder da. Ticket ist seit November 2017 offen!

    #926533

    can you check if this will work : [polylang lang="en"]English[/polylang] [polylang lang="de"]Deutsch[/polylang]

    bei WPML gibt es diese Möglickeit jeweils in shortcodes verpackt die Sprache zu kennzeichnen.

    oder einfach mal versuchen: [en]English[/en] [de]Deutsch[/de]

    #926543

    Aha – man muss die Shortcode Funktion erst aktivieren – das hier kommt in deine functions.php des child-themes:

    function polylang_shortcode($atts, $content = null)
    {
    	if (empty($content))
    		return '';
    	extract( shortcode_atts( array('lang' => ''), $atts ) );
    	if (empty($lang))
    		return "<h3>You must specify 'lang' using shortcode: polylang</h3>";
    
    	return ($lang == pll_current_language()) ? $content : '';
    }
    add_shortcode('polylang', 'polylang_shortcode');

    dann kannst du das wie oben nutzen:
    [polylang lang="en"]Whatever you like here[/polylang][polylang lang="de"]Was immer du auch hier haben möchtest[/polylang]

    #927039

    Hi Reinhard,

    We have german speaking moderators, but you will get help quicker if you post in english.

    Best regards,
    Rikard

    #928732

    Hallo Rikard, danke für den Hinweis. Aber soviel länger kann das doch nicht dauern?
    Schon gar nicht von November 2017 bis März 2018 – ODER ??
    LG Reinhard

    #928821

    hm – Es scheint ja jetzt zu gehen oder? ich sehe jedenfalls im Link oben, dass der Sockel jetzt zweisprachig ist !
    Wie hast Du es denn jetzt gemacht ?
    Danke für die Rückmeldung

    © Copyright – Zechmeisterlehen ****s Berchtesgaden in the Berchtesgadener Land · Privacy · Imprint | Concept & Design by GASTROpoint GmbH
    versus
    © Copyright – Zechmeisterlehen ****s Berchtesgaden im Berchtesgadener Land · Datenschutz · Impressum | Konzept & Design by GASTROpoint GmbH

    #928986

    Hallo Guenni007:

    Enfold-Child -> Footer:

    [nolink][polylang lang=”de”]© Copyright – Mein Hotel · Datenschutz · Impressum | Konzept & Design by GASTROpoint GmbH[/polylang][polylang lang=”en”]© Copyright – My Hotel · Privacy · Imprint | Concept & Design by GASTROpoint GmbH[/polylang]

    Add to Theme Functions.php (/wp-content/themes/enfold-child/functions.php)

    /* Polylang Multilanguage-Footer */
    function polylang_shortcode ($atts, $content = null)
    {
    if (empty ($content)) { return ”; }
    extract ( shortcode_atts ( array (‘lang’ => ”), $atts ) );
    if (empty ($lang)) { return “<h3>You must specify ‘lang’ using shortcode: polylang</h3>”; }
    return ($lang == pll_current_language ()) ? $content : ”;
    }
    add_shortcode (‘polylang’, ‘polylang_shortcode’);

    #929142

    also mein weg oben ja? – es ist immer schön eine Rückantwort zu bekommen. Nicht für das Danke das es geklappt hat, sondern ich kann es dann aus den Topics nehmen die ich für einen Nachbearbeitung in der Liste habe.
    Viel Erfolg – sieht toll aus die Seite – und vor allem auch das was es beschreibt. Macht richtig lust mal wieder in den Bergen Urlaub zu machen.

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