Hopefully the Divi Sensei author can update us soon.
WordFence dashboard:
`The Plugin “Battle Suit for Divi” has been removed from www.remarpro.com.
Issue Found 20 May 2022 2:31 pm
Current Plugin Version: 1.17.0
Details: It has unpatched security issues and may have compatibility problems with the current version of WordPress.
Plugin URL: https://divi-sensei.com/suit (page not found)
Plugin home WP.org:
]]>This plugin has been closed as of April 26, 2022 and is not available for download. This closure is temporary, pending a full review.
I have the latest DIVI and WordPress and the latest downloadable Battle Suite from here. The following issue appears:
the overlay of an image carousel is not working in the front-end: https://prnt.sc/ooMkXjuRNeuo
No console errors are shown on that page.
Do you have any suggestions?
]]>I’m concerned about this plugin since my firewall has flagged it. Any update on this? I see that the “Divi Sensei” website is no longer up either (just a ‘Coming Soon’ page).
]]>Hello,
I’ve been using the ds suit plugin for the masonry grid on my portfolio happily/successfully for the past two years. I received notification last night from my hosting provider that there was security vulnerability for the ds suit plugin. Obviously looking to avoid any greater destruction to my site (I have enough of that going on currently on other sites) I deleted the plugin. My hosting provider said “There is a vulnerability in relation to a bunch of plugins and themes that use a certain SDK that is being actively exploited – https://wpscan.com/vulnerability/6dae6dca-7474-4008-9fe5-4c62b9f12d0a
That might explain why you’re seeing more occurrences since a lot of plugins use that SDK”.
With that in mind, do you know if/when this will be resolved to know whether I should look for another solution or hang tight and reinstall ds suit in a more secure format? If it is in progress, thank you, and what’s the best way of knowing that it’s been resolved (as I no longer will receive updates as I’ve had to delete the plugin? Thank you
]]>Hi
in sensi masonry gallery, there are 2 options for sorting images
Default
Random
I need to add a third choice to reverse the default order.
How can I do this?
Regards
]]>When I update to Divi 4.10.* my Sensei Masonry gallery appears on my website as one image below the other. Is anyone else having this problem? I’ve rolled back to Divi 4.9.11 and it’s fine again.
Any suggestions? Or is this plugin now defunct?
]]>I really liked the mansory gallery module of this plugin, but it seems the plugin has been abandoned, it has not been updated in 9 months, that’s a lot! and the gallery module doesn’t load anymore in the newest versions of Divi ??
]]>Not certain if it’s a 5.5.1 incompatibility issue or what, but after installing Battle Suit, the site crashed, reporting a pretty major memory leakage issue as the root cause.
Noticed that this plugin hasn’t had support for a number of months now, so maybe it’s DOA? Hope not, as I was a fan of how it handled Masonry, something DIVI should be doing out of the box already.
]]>Is it possible to not show the title of the image on hover?
]]>Hi janthielemann,
Thanks a lot for this free plugin, I was so amazed when I discovered it was so easy to create a Masonry gallery for Divi. So super thankful for what you’ve done!
The plugin has worked like a charm all the time but now, for some reason I still didn’t find, it doesn’t anymore. Now when clicking on an image it would make it larger to fill the viewport with an animation, as expected. So far so good, but at the very last moment instead of showing the picture in a lightbox, so that you can navigate through the rest of the elements of the gallery, it jumps to the image file page (https://domain.com/…/image.jpg). So you have to go back to the gallery page every time.
Here’s a video showing this behavior: https://photos.app.goo.gl/1jNNENiKqAVaWAUXA
I’ve been looking for the reason why this works like that but I haven’t been able to find it. Deactivating all the plugins or switching to the default Divi theme instead of the child won’t fix the problem. I thought it could be due to updating Divi recently, but I’ve used your plugin in another website, updated Divi in it and keeps working fine.
I understand it probably is a specific problem of this website, so you wouldn’t know what could cause it, but I tell you just in case you had this issue in the past and know what’s the reason.
Thanks a lot again for you work and your time you’ve invested on giving us this free tool.
Have a nice day!
Hi
I am seeing a number of issues with the plugin.
WordPress is flagging the fact it isn’t tested with the current version.
I am seeing dbug info output beside Minify And Combine Javascript Files in Divi Theme Options:
Divi uses uncombined and unminified javascript files because “SCRIPT_DEBUG” constant on wp-config.php has been set to “true”. Other plugin can enforce Divi to use uncombined and unminified javascript files by filtering “et_load_unminified_scripts” filter as well.
Can you tell me if you have stoped developing this plugin?
I am using the masonry module on another site I am currently building and will need to find an alternative way to display the images used in it if this plugin is no more.
]]>I’m trying to add a masonry gallery into a popup made with “Popup Maker”, but it doesn’t work, it’s like there’s no module added. Any ideas?
]]>I have the latest DIVI (2020/05/06) and the latest downloadable Battle Suite from here. The following issue appears:
“Battle Suit for Divi is currently inactive because the Divi Builder is either missing or because the Divi version is incompatible with this version of the plugin.”
]]>Hello. I am trying to achieve the same hover effect with the Battle Suit masonry gallery as I have on this page: https://demo2.websitesforartists.co.za/textured-abstract-paintings/ where there is a small overlay that appears at the bottom of the image with the image title and caption. At the moment, I am failing miserably at making this happen and would so much appreciate any help please.
Thanks in advance,
Tracy
I have a gallery that is loading a lot of images, and have added a lazy load plugin (s3 lazy load), however I needed to add the width and height of the images to make the gallery compatible. The lazy load support option within the plugin, fixes the compatibility but stopped the lazy loading functionality.
Would it be possible to add the height and width of the attachment images to the img element to make this plugin fully lazy load compatible for future releases?
Here is the change I made to the MasonryGallery.php file to include the width and height of the attachment:
$image_attributes = wp_get_attachment_image_src( $attachment_id, "full" );
$items[] = sprintf(
'<div class="grid-item et_pb_gallery_image">
<a href="%1$s"%4$s%5$s>
<img width="%10$s"
height="%11$s"
src="%1$s"
alt="%2$s"
title="%3$s"
srcset="%9$s 768w, %8$s 980w, %7$s 1024w"
sizes="(max-width: 768px) 768px, (max-width: 980px) 980px, 1024px" />
%6$s
</a>
</div>',
$image,
$image_alt,
$image_title,
'on' === $args["title_in_lightbox"] ? " data-title='$image_title'" : '',
'on' === $args["caption_in_lightbox"] ? " data-caption='" . wp_get_attachment_caption($attachment_id) . "'" : '',
'on' === $args['use_overlay'] ? et_core_esc_previously($overlay_output) : "",
$image_desktop_url,
$image_tablet_url,
$image_phone_url,
$image_attributes[1],
$image_attributes[2]
);
]]>
I have a little problem with the masonry gallery. In some galleries differs the thumbnail order to my picture order in the frontend. Is this a bug, or is there a workaround I can do, that I have the same order in the module backend and in frontend?
]]>Hi, is there a way to link different “Masonry Gallery”-images to individual pages? Best regards, Achim
]]>The plugin is not working.
]]>Masonry Gallery images are stacking on top of each other or getting stuck on page load in Safari, and don’t fix themselves until you resize the window.
Is this a known issue? Are there any known issues with any caching plugin settings? I’m using WP-Rocket. Is there a script that can/should be set to not minimize/cache, etc.?
This doesn’t happen in Firefox or Chrome—just in Safari.
Please advise.
]]>Masonry Gallery – Title and Caption not showing within Lightboxes
I saw a previous post about adjusting the title and caption within the light boxes, but I don’t see the tile or captions in the light boxes, nor do I see a setting for them.
Are they not working in latest version of Sensei and/or Divi?
]]>Thank you so much for this amazing plugin; I have just discovered it today and I am already excited at the improvements to my site.
Is there a way to adjust the font size for the title and caption within the lightbox with using Masonry Gallery? It is too small to read, even on my large monitor.
The section with the Title and Caption is also extending below and behind the Windows toolbar on my screen so that I have to use the browser scroll bar on the right to see the rest of the text.
You can see both of these issues in the topmost gallery on the page I have linked. Thank you for any advice you can provide!
]]>Is there a way to add a Load More button at the bottom of the Masonry Gallery display if there are more than, say 30-40 images? If I have a gallery of like 100 images, it’s probably not a good idea for me to try to load them all on the initial page load. Hopefully you have some advice. Thanks!
]]>Wondering if this is by default, or if something’s not working right on this page. I would typically expect the lightbox to have arrows left and right to scroll through the larger images. Is this normal, or should there be arrows? If there SHOULD be arrows, any thoughts on why they’re not showing up? Many thanks!
]]>Hi, I’m having an issue with the masonry gallery. I have placed the gallery in a 1-column row and the first time the page is loaded the gallery is not shown properly (just few pieces of the top images). Apparently the row height is not working…
Could you help me with that, please?
Thanks!
]]>Dear team,
I insert Sensei Video Lightbox module, however it is not working.
I have the last version of your plugin and Divi theme.
Thank you in advance for your help,
Best regards,
Aude
Thanks for fixing the previous issue.
Now the text ‘ nix da ‘ appears in the bottom left of every image.
And I can’t hide it with css either haha
]]>Hey there, just installed your plugin.
Specifically to use the masonry gallery.
It is working on the website however in the divi builder it just shows the error box (Oops an error has occurred etc).
So you can add the gallery but not edit it, move it or… see it..in the editor.
Any chance of a fix for this, it seems to work nicely on the website.
Also in the wordpress admin, the ‘settings’ page show the error ‘You don’t have permission to view this page’.
Thanks
]]>Hi Jan,
is it possible to sperate the Lightbox view off different galeries when they’re one one page.
Actual the module makes separate gallery content in one list – so two galleries with 4 pictures shows 8 images in the lightbox?