bqworks
Forum Replies Created
-
Forum: Plugins
In reply to: [Slider Pro] Issue with SliderPro PHP compatabilityHi. I didn’t notice slider errors with PHP 8.3. Do you have more details from the compatibility checker?
Best,
DavidForum: Plugins
In reply to: [Accordion Slider] PolylangYou’re welcome!
Forum: Plugins
In reply to: [Accordion Slider] PolylangHi. If you’re referring to the admin area labels, the plugin includes a .pot file which you can use for translation. For translating custom text added as content in the accordion, you could try using the plugin’s API which you can find in the documentation. There are several hooks available which could be useful, depending on what exactly your trying to achieve. There’s also the easier option of creating a different accordion for each language if you’re trying to translate the content.
Best,
DavidForum: Reviews
In reply to: [Accordion Slider] Great free plug-in, excellent UI, responsive developerThank you for your review and for supporting this plugin! 🙂
Forum: Plugins
In reply to: [Accordion Slider] Disable click to closeYou’re welcome!
Forum: Plugins
In reply to: [Accordion Slider] Disable click to closeHi. There isn’t a setting for this, but, if you don’t need to close the panels at all for your use of the accordion, you could override the internal “closePanels” method with custom JS:
AccordionSlider.prototype.closePanels = function() {
return;
}Best,
DavidForum: Reviews
In reply to: [Slider Pro] Simple, powerful, awesome!Thank you for your review!
Forum: Plugins
In reply to: [Accordion Slider] Text link in post content not workingHi. The link should be clickable by default inside an accordion panel. Can you share a link to the page?
Best,
DavidForum: Plugins
In reply to: [Slider Pro] Anyone’s SEO dept complaining about performance?Hi. The images are lazy loaded, so there is a small delay until that image is painted on the screen, because the slider waits for the scripts to be loaded and executed before it shows the image. However, when I actually load your page, the delay isn’t that big on my internet connection. Anyway, you can modify this with some custom code in order to make the first image appear from the start. In the theme’s functions.php add this code:
add_filter( 'sliderpro_slide_markup', 'slider_slide_markup', 10, 3 );
function slider_slide_markup( $html_markup, $slider_id, $slide_index ) {
if ($slide_index === 0) {
$html_markup = preg_replace('/\ssrc="(.+?)"\s*data-src="(.+?)"/i', ' src="$2" data-src="$2"', $html_markup);
}
return $html_markup;
}Then you can also add some styling to that image in order to make it fit the slider area, since the images are initially unstyled:
.sp-no-js .sp-slide:not(:first-child) {
opacity: 0;
}
.sp-no-js .sp-slide:first-child .sp-image {
width: 100%;
height: auto;
}Best,
DavidForum: Plugins
In reply to: [Slider Pro] Thumbnails cut the imagesHi. In order to avoid the issue, you need to set the Thumbnail Width and Thumbnail Height options so that the aspect ratio of the original image is maintained. For example, if you actual thumbnails are 300 x 200 (aspect ratio of 1.5), you could set the Thumbnail Width and Thumbnail Height to 150 and 100. What’s important is the aspect ratio (width/height).
Best,
DavidForum: Reviews
In reply to: [Slider Pro] Great pluginThank you for the appreciative comment!
Forum: Plugins
In reply to: [Accordion Slider] Posts Panel not showing contentFrom what I see, you’re probably using Paragraph layers, which wrap your content with a <p> tag, thus creating invalid markup. Paragraph layers are only for adding plain text inside them. For posts content you should use a DIV layer instead. When you hover over the + sign to add a layer, instead of clicking it directly, you can select the type of layer you want to add from the popup.
Best,
DavidForum: Plugins
In reply to: [Accordion Slider] Posts Panel not showing contentHi. I can see some content layers in your accordion, so I’m not sure if you’re still experiencing the issue. The [as_content] tag should work correctly, but I would recommend using it inside DIV layers, because your content probably contains HTML and DIV layers are for that case. Paragraph layers are only for simple text. Also, you would need to make sure that the content you load is well formatted, so that it doesn’t break the accordion.
Best,
DavidForum: Plugins
In reply to: [Slider Pro] Image link to web page is not working correctlyYou’re welcome!
Forum: Plugins
In reply to: [Slider Pro] Image link to web page is not working correctlyHi. You will need to disable the Lightbox option in the Miscellaneous sidebar panel.
Best,
David