The slider recently stopped showing. The shortcode is correct and in a shortcode block.
]]>Hi guys,
why was the topic https://www.ads-software.com/support/topic/images-not-showing-when-clicking-in-gallery/ closed without any reasonable explanation or workaround provided? The issue is still reproducible. Are you going to fix that in some close update?
Hi, I was about to update my photo club’s website by adding more images from the last couple of months but have just found out that i can add them to a gallery but when I click on the individual photo in the gallery, it just shows a black screen with a cross at the left button corner but no photo!
It is the free version on this website.
]]>Hi,
I am getting the following error on my website:
Notice: Undefined index: WL_Custom_CSS in /home/sustai14/citruscreekplantation.com/wp-content/plugins/responsive-photo-gallery/responsive-gallery-short-code.php on line 26
I am running WP 5.4.3 and PHP Version 7.2
Please advise!
Thank you ??
]]>In the settings you can set one, two or 3 columns. If you set 3 columns and save the settings, only 2 columns are displayed on the website. Up to version 3.5.6 this worked perfectly. Why not now?
]]>I have a new WP install using default theme 2019 and no other plugins. The [WRG id=1] shortcode shows up as that, it is not rendered into my gallery.
I also am not sure if the 1 is correct because I don’t see any place to find out the short code for my first gallery. Where do I retrieve the gallery short code from? That could be the problem.
Thanks,
]]>I updated to 3.5.5 and my photo page that had been two columns of pics is now staggered and random.
Help?
]]>hello,The lightbox is not working at firefox latest version.Kindly fix this asap.
]]>Hi!
It affects tile’s view if lazy loading of images is enabled (in Jetpack in my case but I think it’s going to happen with other plugins as well). The “top” property for rows other than the first one gets a wrong value and images overlap one another.
I believe that it is necessary to change the way to calculate the value. Now it takes size of non-existent image (it’s not loaded yet) and that’s the reason for the error.
cheers,
Jarek
Does the PRO version of Responsive Gallery support pagination?
]]>The official premium forum page is showing up in bad shape and so I can’t post anything! I sent an email via the contact us link which says I would get a confirmation email that the email was sent and no email at all. I hope you can read my email. I was asking if it was possible to modify the loop so that only one image from the gallery is shown and when you click on it, you get the pretty photo lightbox showing all the images of the gallery. As I see there is no way to add gallery per photo category, this is the only way I have imagined we could display a gallery. I have tried it myself by adding a counter to the loop on responsive-photo-gallery-short-code.php :
/** * Load All Image Gallery Custom Post Type */ $IG_CPT_Name = "rpgp_gallery"; $AllGalleries = array( 'p' => $Id['id'], 'post_type' => $IG_CPT_Name, 'orderby' => 'ASC' ); $loop = new WP_Query( $AllGalleries ); ?> <div class="gal-container <?php if ( $WL_Light_Box == "lightbox2" ) { echo "photobox-lightbox_$RPGP_Id"; } ?> "> <?php while ( $loop->have_posts() ) : $loop->the_post(); ?> <?php static $count = 0;?> <!--get the post id--> <?php $post_id = get_the_ID(); ?> <?php if ( $WL_Show_Gallery_Title == "yes" ) { ?> <!-- gallery title --> <div class="rpgp-gallery-head"> <?php echo get_the_title( $post_id ); ?> </div> <?php } ?> <div class="gallery1" id="weblizar_<?php echo get_the_ID(); ?>"> <?php /** * Get All Photos from Gallery Details Post Meta */ get_the_ID(); $RPGP_AllPhotosDetails = unserialize( base64_decode( get_post_meta( get_the_ID(), 'rpgp_all_photos_details', true ) ) ); $TotalImages = get_post_meta( get_the_ID(), 'rpgp_total_images_count', true ); $i = 1; foreach ( $RPGP_AllPhotosDetails as $RPGP_SinglePhotoDetails ) { $name = $RPGP_SinglePhotoDetails['rpgp_image_label']; $url = $RPGP_SinglePhotoDetails['rpgp_image_url']; $url_full = $RPGP_SinglePhotoDetails['rpgp_image_url']; $url1 = $RPGP_SinglePhotoDetails['rpgp_12_thumb']; $url2 = $RPGP_SinglePhotoDetails['rpgp_346_thumb']; $url3 = $RPGP_SinglePhotoDetails['rpgp_12_same_size_thumb']; $url4 = $RPGP_SinglePhotoDetails['rpgp_346_same_size_thumb']; $i ++; if ( $WL_Gallery_Layout == "col-md-12" ) { // one column $Thummb_Url = $url; } if ( $WL_Gallery_Layout == "col-md-6" ) { // two column if ( $WL_Thumbnail_Layout == "same-size" ) { $Thummb_Url = $url3; } if ( $WL_Thumbnail_Layout == "masonry" ) { $Thummb_Url = $url1; } if ( $WL_Thumbnail_Layout == "original" ) { $Thummb_Url = $url; } } if ( $WL_Gallery_Layout == "col-md-4" || $WL_Gallery_Layout == "col-md-3" || $WL_Gallery_Layout == "col-md-2" ) {// 3 4 6 column if ( $WL_Thumbnail_Layout == "same-size" ) { $Thummb_Url = $url4; } if ( $WL_Thumbnail_Layout == "masonry" ) { $Thummb_Url = $url2; } if ( $WL_Thumbnail_Layout == "original" ) { $Thummb_Url = $url; } } ?> <div class="<?php echo $WL_Gallery_Layout; ?> col-sm-6 wl-gallery"> <div class="b-link-<?php echo $WL_Hover_Animation; ?> b-animate-go"> <?php if ( $WL_Show_Image_Lightbox == "yes" ) { ?> <img src="<?php echo $Thummb_Url; ?>" class="gall-img-responsive" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>"> <div class="b-wrapper"> <?php if ( $WL_Gallery_Layout == "col-md-12" || $WL_Gallery_Layout == "col-md-6" || $WL_Gallery_Layout == "col-md-4" ) { ?> <?php if ( $WL_Show_Image_Label == "yes" ) { ?> <h2 class="b-from-left b-animate b-delay03"> <div class=" rpgp-header-label"><?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?></div> </h2> <?php } ?> <?php } //photobox if ( $WL_Light_Box == "lightbox2" ) { ?> <p class="b-from-right b-animate b-delay03"> <a href="<?php echo $url; ?>" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>"> <i class="<?php echo $WL_Image_View_Icon; ?> <?php echo $WL_Image_View_Icon_Size; ?>"></i> <img src="<?php echo $Thummb_Url; ?>" class="gall-img-responsive" style="display:none !important; visibility:hidden" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>"> </a> </p> <?php } //nivo box if ( $WL_Light_Box == "lightbox1" ) { ?> <p class="b-from-right b-animate b-delay03"> <a data-lightbox-gallery="enigma_lightbox" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>" class="nivoz_<?php echo $RPGP_Id; ?>" href="<?php echo $url_full; ?>"> <i class="<?php echo $WL_Image_View_Icon; ?> <?php echo $WL_Image_View_Icon_Size; ?>"></i> </a> </p> <?php } // 3 - pretty photo Box if ( $WL_Light_Box == "lightbox3" ) { ?> <p class="b-from-right b-animate b-delay03"> <a class="portfolio-zoom icon-resize-full" data-rel="prettyPhoto_<?php echo $RPGP_Id; ?>[portfolio]" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>" href="<?php echo $url; ?>"> <i class="<?php echo $WL_Image_View_Icon; ?> <?php echo $WL_Image_View_Icon_Size; ?>"></i> </a> </p> <?php } // 4 - Swipe Box if ( $WL_Light_Box == "lightbox4" ) { ?> <p class="b-from-right b-animate b-delay03"> <a title="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>" class="swipebox_<?php echo $RPGP_Id; ?>" href="<?php echo $url_full; ?>"> <i class="<?php echo $WL_Image_View_Icon; ?> <?php echo $WL_Image_View_Icon_Size; ?>"></i> </a> </p> <?php } ?> </div> <?php } else { //photobox if ( $WL_Light_Box == "lightbox2" ) { ?> <a href="<?php echo $url; ?>" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>"> <img src="<?php echo $Thummb_Url; ?>" class="gall-img-responsive" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>"> <div class="b-wrapper"> <?php if ( $WL_Gallery_Layout == "col-md-12" || $WL_Gallery_Layout == "col-md-6" || $WL_Gallery_Layout == "col-md-4" ) { ?> <?php if ( $WL_Show_Image_Label == "yes" ) { ?> <h2 class="b-from-left b-animate b-delay03 rpgp-header-label"><?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?> </h2> <?php } ?> <?php } ?> </div> </a> <?php } // nivobox if ( $WL_Light_Box == "lightbox1" ) { ?> <a data-lightbox-gallery="enigma_lightbox" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>" class="nivoz_<?php echo $RPGP_Id; ?>" href="<?php echo $url; ?>"> <img src="<?php echo $Thummb_Url; ?>" class="gall-img-responsive" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>"> <div class="b-wrapper"> <?php if ( $WL_Gallery_Layout == "col-md-12" || $WL_Gallery_Layout == "col-md-6" || $WL_Gallery_Layout == "col-md-4" ) { ?> <?php if ( $WL_Show_Image_Label == "yes" ) { ?> <h2 class="b-from-left b-animate b-delay03 rpgp-header-label"><?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?> </h2> <?php } ?> <?php } ?> </div> </a> <?php } // pretty photo if ( $WL_Light_Box == "lightbox3" ) { ?> <a class="portfolio-zoom icon-resize-full" data-rel="prettyPhoto_<?php echo $RPGP_Id; ?>[portfolio]" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>" href="<?php echo $url; ?>"> <img src="<?php echo $Thummb_Url; ?>" class="gall-img-responsive" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>"> <div class="b-wrapper"> <?php if ( $WL_Gallery_Layout == "col-md-12" || $WL_Gallery_Layout == "col-md-6" || $WL_Gallery_Layout == "col-md-4" ) { ?> <?php if ( $WL_Show_Image_Label == "yes" ) { ?> <h2 class="b-from-left b-animate b-delay03 rpgp-header-label"><?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?> </h2> <?php } ?> <?php } ?> </div> </a> <?php } // swipe box if ( $WL_Light_Box == "lightbox4" ) { ?> <div id="swipebox-title"> <a title="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>" class="swipebox_<?php echo $RPGP_Id; ?>" href="<?php echo $url; ?>"> <img src="<?php echo $url_full; ?>" class="gall-img-responsive" alt="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>" title="<?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?>"> <div class="b-wrapper"> <?php if ( $WL_Gallery_Layout == "col-md-12" || $WL_Gallery_Layout == "col-md-6" || $WL_Gallery_Layout == "col-md-4" ) { ?> <?php if ( $WL_Show_Image_Label == "yes" ) { ?> <h2 class="b-from-left b-animate b-delay03 rpgp-header-label"><?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?> </h2> <?php } ?> <?php } ?> </div> </a> </div> <?php } } ?> </div> <?php if ( $WL_Show_Image_Label == "yes" ) { ?> <h4 class="rpgp-footer-label"><?php echo html_entity_decode( $name, ENT_QUOTES, "UTF-8" ); ?></h4> <?php } ?> </div> <?php } ?> </div> <?php if ($count == "1") { break; } $count++; ?> <?php endwhile; ?> </div>
but it does nto work, it is still showing up all images of the gallery. Could you provide a way? thanks
]]>The official premium forum page is showing up in bad shape and so I can’t post anything! I sent an email via the contact us link which says I would get a confirmation email that the email was sent and no email at all. I hope you can read my email. I was asking if it was possible to modify the loop so that only one image from the gallery is shown and when you click on it, you get the pretty photo lightbox showing all the images of the gallery. As I see there is no way to add gallery per photo category, this is the only way I have imagined we could display a gallery. I have tried it myself by adding a counter to the loop on responsive-photo-gallery-short-code.php : /** * Load All Image Gallery Custom Post Type */ $IG_CPT_Name = “rpgp_gallery”; $AllGalleries = array( ‘p’ => $Id[‘id’], ‘post_type’ => $IG_CPT_Name, ‘orderby’ => ‘ASC’ ); $loop = new WP_Query( $AllGalleries ); ?> <div class=”gal-container <?php if ( $WL_Light_Box == “lightbox2” ) { echo “photobox-lightbox_$RPGP_Id”; } ?> “> <?php while ( $loop->have_posts() ) : $loop->the_post(); ?> <?php static $count = 0;?> <!–get the post id–> <?php $post_id = get_the_ID(); ?> <?php if ( $WL_Show_Gallery_Title == “yes” ) { ?> <!– gallery title –> <div class=”rpgp-gallery-head”> <?php echo get_the_title( $post_id ); ?> </div> <?php } ?> <div class=”gallery1″ id=”weblizar_<?php echo get_the_ID(); ?>”> <?php /** * Get All Photos from Gallery Details Post Meta */ get_the_ID(); $RPGP_AllPhotosDetails = unserialize( base64_decode( get_post_meta( get_the_ID(), ‘rpgp_all_photos_details’, true ) ) ); $TotalImages = get_post_meta( get_the_ID(), ‘rpgp_total_images_count’, true ); $i = 1; foreach ( $RPGP_AllPhotosDetails as $RPGP_SinglePhotoDetails ) { $name = $RPGP_SinglePhotoDetails[‘rpgp_image_label’]; $url = $RPGP_SinglePhotoDetails[‘rpgp_image_url’]; $url_full = $RPGP_SinglePhotoDetails[‘rpgp_image_url’]; $url1 = $RPGP_SinglePhotoDetails[‘rpgp_12_thumb’]; $url2 = $RPGP_SinglePhotoDetails[‘rpgp_346_thumb’]; $url3 = $RPGP_SinglePhotoDetails[‘rpgp_12_same_size_thumb’]; $url4 = $RPGP_SinglePhotoDetails[‘rpgp_346_same_size_thumb’]; $i ++; if ( $WL_Gallery_Layout == “col-md-12” ) { // one column $Thummb_Url = $url; } if ( $WL_Gallery_Layout == “col-md-6” ) { // two column if ( $WL_Thumbnail_Layout == “same-size” ) { $Thummb_Url = $url3; } if ( $WL_Thumbnail_Layout == “masonry” ) { $Thummb_Url = $url1; } if ( $WL_Thumbnail_Layout == “original” ) { $Thummb_Url = $url; } } if ( $WL_Gallery_Layout == “col-md-4” || $WL_Gallery_Layout == “col-md-3” || $WL_Gallery_Layout == “col-md-2” ) {// 3 4 6 column if ( $WL_Thumbnail_Layout == “same-size” ) { $Thummb_Url = $url4; } if ( $WL_Thumbnail_Layout == “masonry” ) { $Thummb_Url = $url2; } if ( $WL_Thumbnail_Layout == “original” ) { $Thummb_Url = $url; } } ?> <div class=”<?php echo $WL_Gallery_Layout; ?> col-sm-6 wl-gallery”> <div class=”b-link-<?php echo $WL_Hover_Animation; ?> b-animate-go”> <?php if ( $WL_Show_Image_Lightbox == “yes” ) { ?> ” class=”gall-img-responsive” alt=”<?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8″ ); ?>”> <div class=”b-wrapper”> <?php if ( $WL_Gallery_Layout == “col-md-12” || $WL_Gallery_Layout == “col-md-6” || $WL_Gallery_Layout == “col-md-4” ) { ?> <?php if ( $WL_Show_Image_Label == “yes” ) { ?> <h2 class=”b-from-left b-animate b-delay03″> <div class=” rpgp-header-label”><?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8” ); ?></div> </h2> <?php } ?> <?php } //photobox if ( $WL_Light_Box == “lightbox2″ ) { ?> <p class=”b-from-right b-animate b-delay03”> ” alt=”<?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8″ ); ?>”> <i class=”<?php echo $WL_Image_View_Icon; ?> <?php echo $WL_Image_View_Icon_Size; ?>”></i> ” class=”gall-img-responsive” style=”display:none !important; visibility:hidden” alt=”<?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8″ ); ?>”> </p> <?php } //nivo box if ( $WL_Light_Box == “lightbox1″ ) { ?> <p class=”b-from-right b-animate b-delay03”> ” class=”nivoz_<?php echo $RPGP_Id; ?>” href=”<?php echo $url_full; ?>”> <i class=”<?php echo $WL_Image_View_Icon; ?> <?php echo $WL_Image_View_Icon_Size; ?>”></i> </p> <?php } // 3 – pretty photo Box if ( $WL_Light_Box == “lightbox3″ ) { ?> <p class=”b-from-right b-animate b-delay03”> [portfolio]” alt=”<?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8″ ); ?>” href=”<?php echo $url; ?>”> <i class=”<?php echo $WL_Image_View_Icon; ?> <?php echo $WL_Image_View_Icon_Size; ?>”></i> </p> <?php } // 4 – Swipe Box if ( $WL_Light_Box == “lightbox4″ ) { ?> <p class=”b-from-right b-animate b-delay03”> ” alt=”<?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8″ ); ?>” class=”swipebox_<?php echo $RPGP_Id; ?>” href=”<?php echo $url_full; ?>”> <i class=”<?php echo $WL_Image_View_Icon; ?> <?php echo $WL_Image_View_Icon_Size; ?>”></i> </p> <?php } ?> </div> <?php } else { //photobox if ( $WL_Light_Box == “lightbox2” ) { ?> ” alt=”<?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8″ ); ?>”> ” class=”gall-img-responsive” alt=”<?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8″ ); ?>”> <div class=”b-wrapper”> <?php if ( $WL_Gallery_Layout == “col-md-12” || $WL_Gallery_Layout == “col-md-6” || $WL_Gallery_Layout == “col-md-4” ) { ?> <?php if ( $WL_Show_Image_Label == “yes” ) { ?> <h2 class=”b-from-left b-animate b-delay03 rpgp-header-label”><?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8” ); ?> </h2> <?php } ?> <?php } ?> </div> <?php } // nivobox if ( $WL_Light_Box == “lightbox1” ) { ?> ” class=”nivoz_<?php echo $RPGP_Id; ?>” href=”<?php echo $url; ?>”> ” class=”gall-img-responsive” alt=”<?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8″ ); ?>”> <div class=”b-wrapper”> <?php if ( $WL_Gallery_Layout == “col-md-12” || $WL_Gallery_Layout == “col-md-6” || $WL_Gallery_Layout == “col-md-4” ) { ?> <?php if ( $WL_Show_Image_Label == “yes” ) { ?> <h2 class=”b-from-left b-animate b-delay03 rpgp-header-label”><?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8” ); ?> </h2> <?php } ?> <?php } ?> </div> <?php } // pretty photo if ( $WL_Light_Box == “lightbox3” ) { ?> [portfolio]” alt=”<?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8″ ); ?>” href=”<?php echo $url; ?>”> ” class=”gall-img-responsive” alt=”<?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8″ ); ?>”> <div class=”b-wrapper”> <?php if ( $WL_Gallery_Layout == “col-md-12” || $WL_Gallery_Layout == “col-md-6” || $WL_Gallery_Layout == “col-md-4” ) { ?> <?php if ( $WL_Show_Image_Label == “yes” ) { ?> <h2 class=”b-from-left b-animate b-delay03 rpgp-header-label”><?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8” ); ?> </h2> <?php } ?> <?php } ?> </div> <?php } // swipe box if ( $WL_Light_Box == “lightbox4″ ) { ?> <div id=”swipebox-title”> ” alt=”<?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8″ ); ?>” class=”swipebox_<?php echo $RPGP_Id; ?>” href=”<?php echo $url; ?>”> ” class=”gall-img-responsive” alt=”<?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8″ ); ?>” title=”<?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8″ ); ?>”> <div class=”b-wrapper”> <?php if ( $WL_Gallery_Layout == “col-md-12” || $WL_Gallery_Layout == “col-md-6” || $WL_Gallery_Layout == “col-md-4” ) { ?> <?php if ( $WL_Show_Image_Label == “yes” ) { ?> <h2 class=”b-from-left b-animate b-delay03 rpgp-header-label”><?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8” ); ?> </h2> <?php } ?> <?php } ?> </div> </div> <?php } } ?> </div> <?php if ( $WL_Show_Image_Label == “yes” ) { ?> <h4 class=”rpgp-footer-label”><?php echo html_entity_decode( $name, ENT_QUOTES, “UTF-8” ); ?></h4> <?php } ?> </div> <?php } ?> </div> <?php if ($count == “1”) { break; } $count++; ?> <?php endwhile; ?> </div> but it does nto work, it is still showing up all images of the gallery. Could you provide a way? thanks
]]>Hello, I have strange problem. I’ve been using Responsive Gallery Free for a long time. Today I noticed that the gallery button disappeared from the menu in WP dashboard. I cannot find it anywhere. The existing galleries from the past are working fine on the website. Only, when I go to Plugins/Resp Gallery Settings, I can see the list of all the galleries I’ve made in the past. I can click on them, see the details, change images etc. But there is no “Add Gallery” button, so I can’t generate new ones.
I can see that I’ve made exactly 30 galleries. Maybe this is the clue. Is there any limit of galleries on a single website?
Please advise.
]]>Hi guys,
when user gets into image view, is it possible to call the previous and the next images using mouse scrolling? I mean integration with Easy FancyBox or a similar javascript library.
Thanks!
]]>Hi guys,
I use version 1.6.19
I want to suggest a patch.
In addition to a new layout it fixes hardcoded class col-sm-6
— D:/user/Downloads/responsive-photo-gallery.3.4.7/responsive-photo-gallery/responsive-gallery-settings.php Thu Aug 16 15:00:40 2018
+++ D:/user/Documents/responsive-photo-gallery.3.4.7/responsive-photo-gallery/responsive-gallery-settings.php Thu Aug 16 14:15:17 2018
@@ -74,6 +74,7 @@
<td>
<select name=”wl-gallery-layout” id=”wl-gallery-layout”>
<optgroup label=”Select Gallery Layout”>
+ <option value=”col-md-12″ <?php if($WL_Gallery_Layout == ‘col-md-12’) echo “selected=selected”; ?>><?php _e(“One Column”, WEBLIZAR_RPG_TEXT_DOMAIN); ?></option>
<option value=”col-md-6″ <?php if($WL_Gallery_Layout == ‘col-md-6’) echo “selected=selected”; ?>><?php _e(“Two Column”, WEBLIZAR_RPG_TEXT_DOMAIN); ?></option>
<option value=”col-md-4″ <?php if($WL_Gallery_Layout == ‘col-md-4’) echo “selected=selected”; ?>><?php _e(“Three Column”, WEBLIZAR_RPG_TEXT_DOMAIN); ?></option>
</optgroup>
— D:/user/Downloads/responsive-photo-gallery.3.4.7/responsive-photo-gallery/responsive-gallery-short-code.php Thu Aug 16 15:00:40 2018
+++ D:/user/Documents/responsive-photo-gallery.3.4.7/responsive-photo-gallery/responsive-gallery-short-code.php Thu Aug 16 14:36:51 2018
@@ -156,7 +156,23 @@
}
?>
– <div class=”<?php echo $WL_Gallery_Layout; ?> col-sm-6 wl-gallery” >
+ <div class=”<?php echo $WL_Gallery_Layout;
+ switch ($WL_Gallery_Layout) {
+ case “col-md-4″:
+ echo ” col-sm-4″;
+ break;
+ case “col-md-6″:
+ echo ” col-sm-6″;
+ break;
+ case “col-md-12″:
+ echo ” col-sm-12″;
+ break;
+ default :
+ // not supposed to happen!
+ echo “error!”;
+ break;
+ }
+ ?> wl-gallery” >
<div class=”b-link-<?php echo $WL_Hover_Animation; ?> b-animate-go”>
” alt=”<?php echo $slide_alt; ?>” class=”gall-img-responsive”>
<div class=”b-wrapper”>
Link to a page with single column layout applied: https://vosmon.ru/treba/
]]>Can’t seem to upload multiple images using the muli-image uploader from computer. After selecting multiple images with drag and drop, it seems to go through the process of uploading/crunching but nothing appears in the next dialog after I save changes.
]]>the gallery when it’s opened in mobile you can’t close it, before you swipe up the pics and it’s closed, but it doesn’t work properly, it should be for a wordpress updated or something like that, could you confirm me about it?
thx!
]]>Hello,
I’ve recently taken over maintenance of a new website, which is using the latest version (3.4.4) of Responsive Photo Gallery plugin. I’ve created a development website, which runs PHP version 7.0.22. When visiting the gallery, e.g. using the link above, I see this PHP warning instead of the photos: Warning: Invalid argument supplied for foreach() in /home/(obfuscated)/public_html/urban/wp-content/plugins/responsive-photo-gallery/responsive-gallery-short-code.php on line 127.
The live site is at the same version of Responsibe Photo Gallery plugin, but its PHP version is only 5.5.38. When I visit the photo gallery page there (https://urban.realtor/?page_id=311) I see the photos below the header image.
We would like to update the PHP version of our web server. But we don’t want to break our photo gallery in the process. Can you advise on how to fix this PHP warning at the development website?
I looked for this error online, I do see it at one other website: https://www.kunvarji.com/gu/csr/
]]>can you create it compatible with Awesome Gallery, so your lightbox is used if Awesome Gallery lightbox is switched off and only links are used.
https://codecanyon.net/item/awesome-gallery-instagram-flickr-facebook-galleries-on-your-site/6462937
]]>Hi,
The gallery (the lower one on web page) is not not showing fully. It is partly covered by the top bar and navigation.
I have tried to insert the codes mentioned here: https://www.ads-software.com/support/topic/top-bar-overlapping-image/ but it did not help.
Rgds MATTS
]]>When opening the gallery, the navigation icons in the bottom menu do not appear, opening the console, it presents the following error:
Failed to load resource: the server responded with a status of 404 (Not Found) https://admalingerie.com.br/site/wp-content/plugins/responsive-gallery-with-lightbox/lightbox/img/xicons.png.pagespeed.ic.XK9R6oAava.webp
Could you help me solve this mistake?
Thank you.
]]>Hi everyone.
I’m new to WordPress and everything that has to do with websites and programming.
I want to change the picture in the contact form on my page: https://mhkoncept.dk/
The contact form is “contact form 7” plugin, but i don’t think this is where to look.
I’ve tried to find the image link in the footer.php but without luck.
Can anyone help me step by step?
Thank you
]]>Dear Responsive Photo Gallery support team.
I am really enjoying your plugin and I am about to buy the pro version of it. But before I do, I wonder if there is a way of adding just a single image to my post/page without creating an gallery or album?
The reason is: I would like to make use of the watermark-feature and the ability to prevent right-clicking on an image embedded in my text, but without the need of a gallery/album (because creating a gallery for every single image does not make any sense to me) – just by selecting one of my uploaded images.
Can you help me out, or know a way to achieve this?
Greetings,
Toni
I try to add embedded url to video in galleries using Embed Media Option but showing unknown url. Is there any other option or settings there for embedding media url with embedded code.
Thanks
I’m using the 1.6.5 version and every gallery I create all images redirects to they URL.
Tried to change somethings on CSS but nothing has worked. Light box just doesn’t show up.
Here’s the link and prints
https://strike.actmob.com.br/galeria/eventos-infantis/
I have one gallery using RWP, and my gallery contains 15 pictures. However, only the first 6 pictures display. I can’t figure out why it won’t display all pictures. https://www.hedgehogaspets.com/hedgehog-pictures/
]]>Hi
on somme pages the Hover color opacity effect is working and on the latest pages i added it is not.
I just have the camera icon under the photo.
How did this happen?
Funk
]]>the photos are not being superimposed on the layout. checked browsers chrome and mozilla . installed version 1.5.7 , wordpress version 4.6 . Grateful for the help
https://www.ads-software.com/plugins/responsive-photo-gallery/
]]>I have inherited a website another person created that uses your plugin. I can successfully create galleries and place them on a page using a shortcode and Responsive Photo Gallery with Lightbox 1.5.7
When you click on a photo in a gallery it tries to go to Lightbox mode, but no image is shown (just a black screen). I appreciate your help getting the lightbox to work. See https://keylargobaptistchurch.com/cardboard-sunday/ for an example.
https://www.ads-software.com/plugins/responsive-photo-gallery/
]]>Hi,
How can I get this gallery on Static Home Page ?
https://www.ads-software.com/plugins/responsive-photo-gallery/
]]>