csskevin
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Lightbox 2] Where are the ‘design’ options?As I figured out the feature has been deprecated since 3.0.5+
Forum: Plugins
In reply to: [WP Lightbox 2] Feature Request – Font size optionsHey,
It is not a good idea to directly modify thecss
files of the plugin, because as you said an update will overwrite it.What you can basically do is to modify your template css file directly (if you work with child themes) or using a CSS plugin, which lets you add custom CSS snippets.
You then can override the style of the lightbox. For instance:
#lightbox #caption { font-size: 20px !important; // Other changes... } #lightbox #helpDisplay { // etc ... }
I don’t see a reason to add a feature to customize the CSS, especially because the
lightbox.css
doesn’t include a single!important
statement, so overriding shouldn’t be a problem.You can lookup on the GitHub repository on how the
lightbox.css
file is designed, so that you can override it: https://github.com/awesomemotive/wp-lightbox-2/blob/master/styles/lightbox.cssForum: Plugins
In reply to: [WP Lightbox 2] Where are the ‘design’ options?Hey,
That’s odd. I agree on that, the Plugin page shows a tab calledDesign Settings
. Unfortunately, the version I work on, doesn’t have this feature. Also the previous versions, before I contributed, didn’t haveDesign Settings
.
Honestly I am not sure where this comes from, we will update the plugin page regarding how it really looks like to avoid confusion.Forum: Plugins
In reply to: [WP Lightbox 2] Disable scrollingHey,
There are two ways how you can add an image, so that the Lightbox registers it:
<a href="images/image-1.jpg" rel="lightbox" title="my caption">image #1</a>
In this case, Lightbox will just show this imageHowever you can add a group of images like this:
<a href="images/image-1.jpg" rel="lightbox[roadtrip]">image #1</a> <a href="images/image-2.jpg" rel="lightbox[roadtrip]">image #2</a> <a href="images/image-3.jpg" rel="lightbox[roadtrip]">image #3</a>
The difference here is, that the images are grouped by
roadtrip
in this case. So you can switch between these three images, due all images containsroadtrip
inrel
.You just need to change the
rel
attribute torel="lightbox"
in order to get that working.Forum: Plugins
In reply to: [WP Lightbox 2] bug in 3.0.6.3 ver on mobileHave you installed the newest version of WP-Lightbox-2 (3.0.6.5)?
On which mobile device does this error occur, any specific browser?Forum: Plugins
In reply to: [WP Lightbox 2] Title and HTML Tags Missing after Changing ThemsThe second link is broken, there is a 404 error: https://sandbox.tommymoss.net/gallery-01/.
However, in the first link you provided (https://tommymoss.net/gallery-01/), you use Fancybox instead of WP Lightbox 2.
Forum: Plugins
In reply to: [WP Lightbox 2] PHP Notice after updateHey,
that’s odd, due the last versions doesn’t include modification of this functionality.
However I cannot replicate the PHP Notice:
– Which PHP version do you use?
– Which WordPress version do you use?
– Where does the notice gets displayed? (On the page itself, or in the wp-admin)
– Is there any special case, where this happens or do you always get this notice?Thanks
Forum: Plugins
In reply to: [WP Lightbox 2] Featured Image Open In lightboxUnfortunately there is currently no way to do that with the
wp-lightbox-2
plugin itself. The problem is, that the plugin only works with link tags, like ana
tag. The Featured Image is animg
tag, which makes it not possible to use it right now.Forum: Plugins
In reply to: [WP Lightbox 2] Conflicting plugingsThis issue has been fixed with the code rewrite.
Forum: Plugins
In reply to: [WP Lightbox 2] bug in 3.0.6.3 ver on mobileThis bug has now been fixed in the new release.
Forum: Plugins
In reply to: [WP Lightbox 2] Bug in WordPress 5.5 – Solution providedThere is now a new version of Wp-Lightbox 2 available, which fixes this bug.
Forum: Plugins
In reply to: [WP Lightbox 2] 5.6 compatible?There is now a new version available 3.0.6.5, which officially supports wordpress 5.6.
Forum: Plugins
In reply to: [WP Lightbox 2] bug in 3.0.6.3 ver on mobileThe bug will be fixed in the upcoming version. It is currently under review and will be released asap.
Status: https://github.com/awesomemotive/wp-lightbox-2/pull/3Forum: Plugins
In reply to: [WP Lightbox 2] Bug in WordPress 5.5 – Solution providedThe bug fix is included in the latest pull request.
https://github.com/awesomemotive/wp-lightbox-2/pull/3After review the new version will be released.
Forum: Plugins
In reply to: [WP Lightbox 2] Bug in WordPress 5.5 – Solution provided@fierevere Sorry, for the late response: Which WordPress version do you use? I’ll keep looking to fix this bug with the next release.