Created
July 6, 2021 11:30
-
-
Save nextab/68e2dec12d7f1290f88b3f8c47b3b53f to your computer and use it in GitHub Desktop.
Copy & Paste the code into your child theme's functions.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Per Filter in der functions.php den max-Wert für die Bildauflösungen im Blog-Modul anpassen: | |
| function nxt_overwrite_divi_cropping($width) { | |
| return 2600; | |
| } | |
| add_filter( 'et_pb_blog_image_width', 'nxt_overwrite_divi_cropping' ); | |
| add_filter( 'et_pb_blog_image_height', 'nxt_overwrite_divi_cropping' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment