Ankündigung

Einklappen
Keine Ankündigung bisher.

Möglicherweise Templatefehler in customelement_wrap_start.html5

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Möglicherweise Templatefehler in customelement_wrap_start.html5

    Hi Tim,

    mir ist aufgefallen, dass beim Einsatz des Wrap Inhaltselement, das Öffnen eines Links in einem neuen Tab nicht funktionierte. Ich glaube es liegt daran, dass Deine Wahrheitsbedingung
    HTML-Code:
    empty($lightbox)
    nicht wahr werden kann und habe deshalb diesen Code
    HTML-Code:
    strlen($lightbox)<=1
    alternativ verwendet. Damit funktioniert das Element wie es soll (meine ich zumindest?).
    Hier meine komplete Zeile:
    PHP-Code:
    $link '<a href="'.$this->field('link')->value().'"'.($this->field('link')->option('target') && (strlen($lightbox)<=1) ? ' target="_blank"':'').($this->field('link')->option('titleText') ? ' title="'.$this->field('link')->option('titleText').'"':'').( !empty($lightbox) ? $lightbox '' ).' class="wrap-link">&nbsp;</a>'
    Bitte checken und VG

  • #2
    Ja, ich weiss was gemeint ist. Ich ändere es wie folgt ab:

    Code:
     [COLOR=#333333][SIZE=11px]  [COLOR=#333333][SIZE=11px] [COLOR=#8735a5]$lightbox[/COLOR] [COLOR=#000000]=[/COLOR] [COLOR=#dd2400]''[/COLOR];
      [COLOR=#0045aa]if[/COLOR][COLOR=#000000]([/COLOR] [COLOR=#8735a5]$this[/COLOR][COLOR=#000000]->[/COLOR][COLOR=#3f6e7d]field[/COLOR]([COLOR=#dd2400]'link'[/COLOR])[COLOR=#000000]->[/COLOR][COLOR=#3f6e7d]option[/COLOR]([COLOR=#dd2400]'lightbox'[/COLOR]) [COLOR=#000000])[/COLOR]
      [COLOR=#000000]{[/COLOR]
      [COLOR=#0045aa]if[/COLOR] [COLOR=#000000]([/COLOR] [COLOR=#400080]strncmp[/COLOR]([COLOR=#8735a5]$rel[/COLOR] , [COLOR=#dd2400]'lightbox'[/COLOR], [COLOR=#007ab7]8[/COLOR]) [COLOR=#000000]!==[/COLOR] [COLOR=#007ab7]0[/COLOR] [COLOR=#000000])[/COLOR]
      [COLOR=#000000]{[/COLOR]
      [COLOR=#8735a5]$lightbox[/COLOR] [COLOR=#000000]=[/COLOR] [COLOR=#dd2400]' '[/COLOR][COLOR=#000000].[/COLOR] [COLOR=#8735a5]$rel[/COLOR];
      [COLOR=#000000]}[/COLOR]
      [COLOR=#0045aa]else[/COLOR]
      [COLOR=#000000]{[/COLOR]
      [COLOR=#8735a5]$lightbox[/COLOR] [COLOR=#000000]=[/COLOR] [COLOR=#dd2400]' data-lightbox="'[/COLOR][COLOR=#000000].[/COLOR] [COLOR=#400080]substr[/COLOR]([COLOR=#8735a5]$rel[/COLOR], [COLOR=#007ab7]9[/COLOR], [COLOR=#006ff8]-[/COLOR][COLOR=#007ab7]1[/COLOR]) [COLOR=#000000].[/COLOR][COLOR=#dd2400]'"'[/COLOR];
      [COLOR=#000000]}[/COLOR]
      [COLOR=#000000]}[/COLOR]
     [/SIZE][/COLOR]
     
     [/SIZE][/COLOR]
    http://www.premium-contao-themes.com

    Kommentar

    Lädt...
    X