Archetyped
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Lightbox] i cant seem to get it workingThank you for the additional details.
As your content is not part of standard post/page content, you can manually activate it for display in the lightbox using
slb_activate()
(documentation).Example:
<?php $images = get_field('uk_clinic_images', 'option'); // Start output buffering. ob_start(). if ($images) { echo '<div class="luwi-gallery post-per-row-3">'; foreach ($images as $image) { echo '<a href="' . $image['url'] . '">'; echo '<img src="' . $image['url'] . '" alt="' . $image['alt'] . '">'; echo '</a>'; } echo '</div>'; } // Save output to variable. $out = ob_get_clean(); // Activate links in output. if ( function_exists('slb_activate') ) { $out = slb_activate($out); } // Display output. echo $out; ?>
Forum: Plugins
In reply to: [Simple Lightbox] Vertical align center on mobileHi, SLB’s default themes display the lightbox at the top on small screens.
As themes can fully control the appearance and behavior of the lightbox, a different theme may have different behavior than the default themes. You can also create your own custom theme to personalize the lightbox to your exact specifications (documentation).
Alternatively, you can submit a feature request for SLB’s default themes that others can vote on for inclusion in a future update.
Thanks.
Forum: Plugins
In reply to: [Simple Lightbox] i cant seem to get it workingHi, SLB automatically supports image links in post/page content. Are you image links you’re referring to within the page’s actual content, or are they added separate (e.g. via a template block, etc.)?
Please provide more details on how the links are added to the page. Also, please provide a screenshot of SLB’s admin settings page.
Thanks.
Forum: Plugins
In reply to: [Simple Lightbox] Simple Lightbox not workingHi, it appears that cURL is still not properly configured, or is being blocked by the site’s host from making local requests.
This is not an issue with most hosts, but as noted on the aforementioned cURL support page, you may need to contact your host again for your request to be escalated to someone who knows what to look for to resolve the cURL configuration issue.
Providing them with a link to that page may also help them to identify the issue on their end.
Hi, glad to hear your issue was resolved.
For future reference, you can use SLB’s
[slb_group]
shortcode (documentation) to create as many separate slideshow groups as desired.Forum: Plugins
In reply to: [Simple Lightbox] Bug with Gutenberg gallery : images not croppedHi, glad to hear you found the cause of your issue! ????
Forum: Plugins
In reply to: [Simple Lightbox] Simple Lightbox not workingHi, the issue may be related to your site’s cURL configuration. Please see SLB’s documentation for more information on cURL support.
Let me know if you’re still experiencing an issue once cURL has been enabled/configured, and I would be glad to take another look.
Note: Caching plugins that minify JavaScript files can affect functionality, disabling the plugin during testing is highly recommended. When re-enabling the caching plugin, disabling JS minification or excluding SLB’s files from minification may also be required depending on the caching plugin.
Forum: Plugins
In reply to: [Simple Lightbox] Exclude image from groupHi, see SLB’s settings page for grouping options, including an option to group gallery items separately.
Grouping is currently supported by Classic WordPress galleries. Galleries created by the block editor or a different plugin can be grouped using SLB’s
[slb_group]
shortcode (documentation).Note that the
[slb_group]
shortcode can be also be used to separate a single link from other links on the page.Hi, setting attributes used by SLB manually is not supported. They are for internal use only, which means that their implementation and usage may change at any time.
In fact, setting these attributes manually is nearly guaranteed to *prevent* SLB from working with those links, as the values will not align with their internal usage.
Links added to tables created with Tablepress should be supported by SLB automatically (no manual intervention required). Removing the manually-added attributes is recommended.
If you are still experiencing an issue after removing the manually-set attributes, please provide a link to an updated page and I would be glad to take another look.
Forum: Plugins
In reply to: [Simple Lightbox] Simple Lightbox stopped workingHi, all image links on that page, including those in the gallery, are displayed in a lightbox.
If you are still experiencing an issue, please provide more details on your specific setup (browser name/version, plugin versions, etc.). Please also ensure that you have fully cleared your site and browser caches before testing to avoid loading any stale code.
Thanks.
Forum: Plugins
In reply to: [Cornerstone] Section Error – Builder Not WorkingHi, this is the support forum for the Cornerstone plugin in WordPress’ official plugin directory.
It appears that you are using a different plugin that may be using the same name, as the details you provided do not match this plugin. The plugin you are using may have included support information on the plugin’s own admin page. You may also be able to find information on getting support via the site where you downloaded/purchased the plugin.
Forum: Plugins
In reply to: [Simple Lightbox] Simple Lightbox stopped workingHi, SLB appears to be displaying the gallery images in a lightbox at both the links you provided in this thread and the other one.
Can you please provide more details on what is not working so that the issue can be reproduced?
Thanks.
Forum: Plugins
In reply to: [Simple Lightbox] how Can I open a video through a video link in SLBHi, SLB supports image links by default. Additional link types and functionality can be supported by extensions.
See Simple Lightbox’s home page for more details on available extensions.
Forum: Plugins
In reply to: [Simple Lightbox] How to deactivate lightbox for file block?Hi, you can exclude links from opening in the lightbox using the
[slb_exclude]
shortcode (documentation). This has been noted on the aforementioned ticket for future reference.Thanks.
Forum: Plugins
In reply to: [Simple Lightbox] Not working on archive pageYoast SEO adds an editor to the page for editing (not creating) an archive. adds an editor to the page for editing (not creating) a category.
Thanks!