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

    Hallo,

    wir haben ein Problem mit der Darstellung des Beitragsbildes auf der Blog-Detailseite. Das Bild wird automatisch in der Höhe beschnitten, jedoch möchten wir es in voller Höhe anzeigen lassen.

    Wir haben versucht, die function.php anzupassen, um das automatische Zuschneiden des Bildes zu deaktivieren:

    alt: $avia_config[‘imgSize’][‘entry_without_sidebar’] = array(‘width’=>845, ‘height’=>321);
    neu: $avia_config[‘imgSize’][‘entry_without_sidebar’] = array(‘width’=>845, ‘height’=>321, ‘crop’ => false);

    Leider hat diese Anpassung nicht funktioniert. Auch der Versuch über das Enfold Child-Theme war nicht erfolgreich:

    add_filter(‘avf_modify_thumb_size’, ‘my_modified_thumb_size’, 10, 1);

    function my_modified_thumb_size($img_size)
    {
    $img_size[‘entry_without_sidebar’][‘crop’] = false;

    return $img_size;
    }

    Gibt es eine andere Möglichkeit, das Beitragsbild in voller Höhe auf der Blog-Detailseite anzuzeigen?

    Vielen Dank.

    #1409215

    Hi imc-html,

    Can you try to change the code to:

    function enfold_customization_modify_thumb_size( $size ) {
      $size['entry_without_sidebar'] = array('width'=>845, 'height'=>321, 'crop'=>false);
      return $size;
    }
    
    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );

    And then try to re-upload the image?

    Best regards,
    Nikko

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