-
AuthorPosts
-
March 14, 2015 at 2:41 pm #411506
Hello,
let me applogize if the issue has been answred, I tried many of suggested in forum, but none did work out for me.How can I have pictures in regular gallery as well as masonry displayed in lightbox in native original size 1920×1080 px. It seem that they are being automatically downsized to 1030x579px.
Thank You!
Petr
March 15, 2015 at 4:54 pm #411704Hey Pijer!
Please see here, https://kriesi.at/support/topic/larger-lightbox-pictures/.
Regards,
ElliottMarch 15, 2015 at 9:43 pm #411754This reply has been marked as private.March 15, 2015 at 9:58 pm #411760Hello, Elliott
it does work out with masonry though.thank You, appreciate Your help.
p.March 16, 2015 at 5:02 pm #412307Hi!
Please add following code to Functions.php file in Appearance > Editor
add_filter( 'avf_avia_builder_masonry_lightbox_img_size', 'enfold_customization_change_popup_size' ); function enfold_customization_change_popup_size( $size ) { return 'fullsize'; }
Best regards,
YigitMarch 16, 2015 at 5:16 pm #412324This reply has been marked as private.March 17, 2015 at 12:49 am #412684Hey!
Try with this code instead:
add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4); function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta) { $link = wp_get_attachment_image_src($attachment->ID, "full"); return $link; }
Regards,
JosueMarch 17, 2015 at 10:09 am #412824This reply has been marked as private.March 17, 2015 at 10:37 am #412832Hi,
Sorry for that, can you please hand me a temporary FTP account so i can fix it?
Regards,
JosueMarch 17, 2015 at 10:47 am #412835This reply has been marked as private.March 17, 2015 at 5:00 pm #413102Hey!
When you copy&pasted the code special characters converted into HTML, i fixed it. But login credentials are not working for me. Can you please check them once again?
Cheers!
YigitMarch 17, 2015 at 5:06 pm #413108I also wanted full size images after clicking on the thumbnail. It’s been a while and I think Josue was the one to give me the solution. I’ve been using it ever since and still works perfectly:
1) Go to config-templatebuilder/avia-shortcodes/gallery.php
2) Search for:'lightbox_size' => 'large'
,
3) Change large into full.Sorry if this doesn’t answer the question. For Masonry it’ll probably be in a different php file in avia-shortcodes.
- This reply was modified 9 years, 8 months ago by DavyE.
March 17, 2015 at 5:16 pm #413116This reply has been marked as private.March 17, 2015 at 10:45 pm #413280Hey!
The gallery at the bottom is now opening the full image in Lightbox.
Regards,
JosueMarch 17, 2015 at 11:06 pm #413289Hey!
Thank You grat time!
I have never ever met this level of service before.Have a graat day wherever it is.
It is 10pm here.Petr
(Czech Republic)March 17, 2015 at 11:09 pm #413290You are welcome, glad to help :)
Regards,
Josue -
AuthorPosts
- The topic ‘Lightbox FULL SIZE picture’ is closed to new replies.