Hi, thank you for putting in effort in creating this useful plugin. I don’t see [link_target=”blank”] in the documentation in here, but it seems like this was an option previously. Is there a way to open the “read more link” in new tab through short code? Thank you!
]]>Where a slider is added to a page in WordPress 6.6.2 and the following options are selected design=’design-2′ through ‘design-5’ and the show_contents option is unset or set to ‘true’ once the page has been saved, on attempting to access the edit interface for that page (using the gutenberg editor) there is a fatal error PHP message: PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 16384 bytes) in /var/www/html/wp-content/plugins/wp-slick-slider-and-image-carousel/includes/shortcodes/wpsisac-slider.php on line 112
on investigation this error can be resolved by using <?php echo get_the_content() ?>
rather than <?php the_content() ?>
in the affected templates (see patch file below)
diff --git a/templates/slider/design-2.php b/templates/slider/design-2.php
index 9565a37..74403ae 100644
--- a/templates/slider/design-2.php
+++ b/templates/slider/design-2.php
@@ -1 +1 @@
-<?php
/**
* Template for Carousel - Design 2
*
* @package WP Slick Slider and Image Carousel
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<div class="wpsisac-image-slide">
<div class="wpsisac-slide-wrap" style="<?php echo esc_attr( $slider_height_css ); ?>">
<img <?php if( $lazyload ) { ?>data-lazy="<?php echo esc_url( $slider_orig_img ); ?>"<?php } ?> src="<?php echo esc_url( $slider_img ); ?>" alt="<?php the_title_attribute(); ?>" />
<div class="wpsisac-slider-overlay">
<div class="wpsisac-slider-content">
<h2 class="wpsisac-slide-title"><?php the_title(); ?></h2>
<?php if( $show_content ) { ?>
<div class="wpsisac-slider-short-content"><?php the_content(); ?></div>
<?php }
if( $sliderurl != '' ) { ?>
<div class="wpsisac-readmore"><a href="<?php echo esc_url( $sliderurl ); ?>" class="wpsisac-slider-readmore"><?php esc_html_e( 'Read More', 'wp-slick-slider-and-image-carousel' ); ?></a></div>
<?php } ?>
</div>
</div>
</div>
</div>
\ No newline at end of file
+<?php
/**
* Template for Carousel - Design 2
*
* @package WP Slick Slider and Image Carousel
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<div class="wpsisac-image-slide">
<div class="wpsisac-slide-wrap" style="<?php echo esc_attr( $slider_height_css ); ?>">
<img <?php if( $lazyload ) { ?>data-lazy="<?php echo esc_url( $slider_orig_img ); ?>"<?php } ?> src="<?php echo esc_url( $slider_img ); ?>" alt="<?php the_title_attribute(); ?>" />
<div class="wpsisac-slider-overlay">
<div class="wpsisac-slider-content">
<h2 class="wpsisac-slide-title"><?php the_title(); ?></h2>
<?php if( $show_content ) { ?>
<div class="wpsisac-slider-short-content"><?php echo get_the_content(); ?></div>
<?php }
if( $sliderurl != '' ) { ?>
<div class="wpsisac-readmore"><a href="<?php echo esc_url( $sliderurl ); ?>" class="wpsisac-slider-readmore"><?php esc_html_e( 'Read More', 'wp-slick-slider-and-image-carousel' ); ?></a></div>
<?php } ?>
</div>
</div>
</div>
</div>
\ No newline at end of file
diff --git a/templates/slider/design-3.php b/templates/slider/design-3.php
index 0da0318..5eb036d 100644
--- a/templates/slider/design-3.php
+++ b/templates/slider/design-3.php
@@ -1 +1 @@
-<?php
/**
* Template for Carousel - Design 3
*
* @package WP Slick Slider and Image Carousel
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<div class="wpsisac-image-slide">
<div class="wpsisac-slide-wrap" style="<?php echo esc_attr( $slider_height_css ); ?>">
<img <?php if( $lazyload ) { ?>data-lazy="<?php echo esc_url( $slider_orig_img ); ?>"<?php } ?> src="<?php echo esc_url( $slider_img ); ?>" alt="<?php the_title_attribute(); ?>" />
<div class="wpsisac-slider-content">
<div class="wpsisac-bg-overlay wp-medium-7 wpcolumns">
<h2 class="wpsisac-slide-title"><?php the_title(); ?></h2>
<?php if( $show_content ) { ?>
<div class="wpsisac-slider-short-content"><?php the_content(); ?></div>
<?php }
if( $sliderurl != '' ) { ?>
<div class="wpsisac-readmore"><a href="<?php echo esc_url( $sliderurl ); ?>" class="wpsisac-slider-readmore"><?php esc_html_e( 'Read More', 'wp-slick-slider-and-image-carousel' ); ?></a></div>
<?php } ?>
</div>
</div>
</div>
</div>
\ No newline at end of file
+<?php
/**
* Template for Carousel - Design 3
*
* @package WP Slick Slider and Image Carousel
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<div class="wpsisac-image-slide">
<div class="wpsisac-slide-wrap" style="<?php echo esc_attr( $slider_height_css ); ?>">
<img <?php if( $lazyload ) { ?>data-lazy="<?php echo esc_url( $slider_orig_img ); ?>"<?php } ?> src="<?php echo esc_url( $slider_img ); ?>" alt="<?php the_title_attribute(); ?>" />
<div class="wpsisac-slider-content">
<div class="wpsisac-bg-overlay wp-medium-7 wpcolumns">
<h2 class="wpsisac-slide-title"><?php the_title(); ?></h2>
<?php if( $show_content ) { ?>
<div class="wpsisac-slider-short-content"><?php echo get_the_content(); ?></div>
<?php }
if( $sliderurl != '' ) { ?>
<div class="wpsisac-readmore"><a href="<?php echo esc_url( $sliderurl ); ?>" class="wpsisac-slider-readmore"><?php esc_html_e( 'Read More', 'wp-slick-slider-and-image-carousel' ); ?></a></div>
<?php } ?>
</div>
</div>
</div>
</div>
\ No newline at end of file
diff --git a/templates/slider/design-4.php b/templates/slider/design-4.php
index 940333a..08cc112 100644
--- a/templates/slider/design-4.php
+++ b/templates/slider/design-4.php
@@ -1 +1 @@
-<?php
/**
* Template for Carousel - Design 4
*
* @package WP Slick Slider and Image Carousel
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<div class="wpsisac-image-slide">
<div class="wpsisac-slide-wrap wp-medium-12 wpcolumns">
<div class="wpsisac-content-left wp-medium-7 wpcolumns">
<h2 class="wpsisac-slide-title"><?php the_title(); ?></h2>
<?php if( $show_content ) { ?>
<div class="wpsisac-slider-short-content"><?php the_content(); ?></div>
<?php }
if( $sliderurl != '' ) { ?>
<div class="wpsisac-readmore"><a href="<?php echo esc_url( $sliderurl ); ?>" class="wpsisac-slider-readmore"><?php esc_html_e( 'Read More', 'wp-slick-slider-and-image-carousel' ); ?></a></div>
<?php } ?>
</div>
<div class="wpsisac-content-right wp-medium-5 wpcolumns">
<img <?php if( $lazyload ) { ?>data-lazy="<?php echo esc_url( $slider_orig_img ); ?>"<?php } ?> src="<?php echo esc_url( $slider_img ); ?>" alt="<?php the_title_attribute(); ?>" />
</div>
</div>
</div>
\ No newline at end of file
+<?php
/**
* Template for Carousel - Design 4
*
* @package WP Slick Slider and Image Carousel
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<div class="wpsisac-image-slide">
<div class="wpsisac-slide-wrap wp-medium-12 wpcolumns">
<div class="wpsisac-content-left wp-medium-7 wpcolumns">
<h2 class="wpsisac-slide-title"><?php the_title(); ?></h2>
<?php if( $show_content ) { ?>
<div class="wpsisac-slider-short-content"><?php echo get_the_content(); ?></div>
<?php }
if( $sliderurl != '' ) { ?>
<div class="wpsisac-readmore"><a href="<?php echo esc_url( $sliderurl ); ?>" class="wpsisac-slider-readmore"><?php esc_html_e( 'Read More', 'wp-slick-slider-and-image-carousel' ); ?></a></div>
<?php } ?>
</div>
<div class="wpsisac-content-right wp-medium-5 wpcolumns">
<img <?php if( $lazyload ) { ?>data-lazy="<?php echo esc_url( $slider_orig_img ); ?>"<?php } ?> src="<?php echo esc_url( $slider_img ); ?>" alt="<?php the_title_attribute(); ?>" />
</div>
</div>
</div>
\ No newline at end of file
diff --git a/templates/slider/design-5.php b/templates/slider/design-5.php
index 6eb0a7e..81940ed 100644
--- a/templates/slider/design-5.php
+++ b/templates/slider/design-5.php
@@ -1 +1 @@
-<?php
/**
* Template for Slider - Design 5
*
* @package WP Slick Slider and Image Carousel
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<div class="wpsisac-image-slide">
<div class="wpsisac-slide-wrap">
<div class="wpsisac-slider-content">
<h2 class="wpsisac-slide-title"><?php the_title(); ?></h2>
<?php if( $show_content ) { ?>
<div class="wpsisac-slider-short-content"><?php the_content(); ?></div>
<?php }
if( $sliderurl != '' ) { ?>
<div class="wpsisac-readmore"><a href="<?php echo esc_url( $sliderurl ); ?>" class="wpsisac-slider-readmore"><?php esc_html_e( 'Read More', 'wp-slick-slider-and-image-carousel' ); ?></a></div>
<?php } ?>
</div>
</div>
</div>
\ No newline at end of file
+<?php
/**
* Template for Slider - Design 5
*
* @package WP Slick Slider and Image Carousel
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<div class="wpsisac-image-slide">
<div class="wpsisac-slide-wrap">
<div class="wpsisac-slider-content">
<h2 class="wpsisac-slide-title"><?php the_title(); ?></h2>
<?php if( $show_content ) { ?>
<div class="wpsisac-slider-short-content"><?php echo get_the_content(); ?></div>
<?php }
if( $sliderurl != '' ) { ?>
<div class="wpsisac-readmore"><a href="<?php echo esc_url( $sliderurl ); ?>" class="wpsisac-slider-readmore"><?php esc_html_e( 'Read More', 'wp-slick-slider-and-image-carousel' ); ?></a></div>
<?php } ?>
</div>
</div>
</div>
\ No newline at end of file
]]>
Current timeline is custom code. Can you let me know if Slick Slider could recreate the timeline and allow for fade in/out on arrow click. I need each timeline item to be centered in the container row when the arrows are clicked to advance. Of course once the timeline gets near the first or last items it’s ok if it cant center those items.
This would be for both desktop and mobile.
Hi Support,
I am facing issues when displaying two image Carousel on the single page.
The issue is the carousels are showing empty white space on left side even though there are more than 3 images per carousel. During testing, I learned if displaying one Carousel on a single page then there doesn’t seem to be an issue. But the issue seems to happen frequently on pages with two carousels. This seems to be a new issue as we have had two carousels on a single page working fine for a few months prior to today.
Please check the below output of carousels on page load:
Screenshots
https://prnt.sc/CR3e0-uBCLQA
https://prnt.sc/PGzoG9E6I58B
The following shortcodes are in use:
[slick-carousel-slider slidestoshow=“3” image_size=“medium_large” design=“design-6” category=“131″ centermode=“true” variablewidth=“true” autoplay=“false” image_fit=“true”]
[slick-carousel-slider slidestoshow=“3” image_size=“medium_large” design=“design-6” category=“132″ centermode=“true” variablewidth=“true” autoplay=“false” image_fit=“true”]
System environment: latest version of wordpress CMS, 8.2 PHP version, and latest version WP Slick Slider and Image Carousel plugin.
]]>I would like to update the slide on homepage, so I upload the slide image and edit the image information, such as the Alt Text, Caption and Description. I also key in ‘Slide link’ which is supposed to redirect me to the destination page, but it failed, it still redirects to the old link which I cannot identified in backend system. Under the field of slide link, there’s a remark ‘Shortcodes Ultimate: Use this filed to add custom links to slides used with Slider, Carousel and Custom Gallery’, so may I know:
Hi, I’m using WordPress Divi and I’ve used the image carousel to create some galleries in a three-slot module. Unfortunately, when I move one of the three carousels with the arrows, the other adjacent ones move automatically as well. I’ve tried everything but I can’t find a solution, does anyone have a suggestion for me? Thank you very much.
]]>I have added the Image Carousel plugin to my homepage, but it seems to be stuck on the first image and does not rotate through the images automatically. Could you assist me in fixing this issue?
Thank you!
]]>I can’t seem to remove JetPack Sharedaddy sharing buttons from the bttom of sliders.
I’ve tried targetting with:
if (is_singular( array(‘custom_post_name’, ‘slick_slider’ ))
Similarly with:
if (is_tax (array(‘ad_tag’, ‘ad_cat’, ‘wpsisac_slider-category’))
But no good. I’ve tried removing the overall setting in wordpress dashboard >>settings>>sharing and unticking the post type. But it still shows.
**UPDATE**
I had to remove the shar buttons by targetting the page IDs where the slider was presented, and then manually add the share buttons into the page templates.
]]>Is it possible to make the “Read More” button a toggle instead so that when it’s clicked, the rest of the text will appear and then it can be clicked again to close it?
]]>Hello,
I am trying to figure out how to remove that text that says “Raffle For Rescues” across the header image. I have this issue for multiple events pages and I cannot seem to locate where exactly this text is generating from. Thank you in advance to anyone who has answers!
]]>It loads fine and then right before the page finishes loading you can see the thumbnails jump down.
]]>I am using Slick-carousel-slider i am using
dots=”false” arrows=”false”
but it does not hide arrows.
Hello, I changed hosting provider and now I have error with WP Carousel plugin. I hope you could help me here, because I can’t fix it and I don’t have so many experiences with PHP. Thank you in advance.
This is my error:
web_1 | [Fri Feb 23 11:44:41.038527 2024] [php:error] [pid 16] [client 10.80.0.1:45164] PHP Parse error: syntax error, unexpected token “endif” in /var/www/html/wp-content/plugins/wp-slick-slider-and-image-carousel/includes/shortcodes/wpsisac-carousel.php on line 1
And this is my wpsisac-carousel.php file (it is written just in one line, that is the reason behind this format):
?php /** * ‘slick-carousel-slider’ Shortcode * * @package WP Slick Slider and Image Carousel * @since 1.0.0 */if ( ! defined( ‘ABSPATH’ ) ) { exit; // Exit if accessed directly}function wpsisac_get_carousel_slider( $atts, $content = null ){ // Taking some global $post; // SiteOrigin Page Builder Gutenberg Block Tweak – Do not Display Preview if( isset( $_POST[‘action’] ) && ($_POST[‘action’] == ‘so_panels_layout_block_preview’ || $_POST[‘action’] == ‘so_panels_builder_content_json’) ) { return “[slick-carousel-slider]”; } // Divi Frontend Builder – Do not Display Preview if( function_exists( ‘et_core_is_fb_enabled’ ) && isset( $_POST[‘is_fb_preview’] ) && isset( $_POST[‘shortcode’] ) ) { return ‘ ‘.esc_html__(‘Slick Carousel View’, ‘wp-slick-slider-and-image-carousel’).’ slick-carousel-slider ‘; }
// Fusion Builder Live Editor – Do not Display Preview if( class_exists( ‘FusionBuilder’ ) && (( isset( $_GET[‘builder’] ) && $_GET[‘builder’] == ‘true’ ) || ( isset( $_POST[‘action’] ) && $_POST[‘action’] == ‘get_shortcode_render’ )) ) { return ‘ ‘.esc_html__(‘Slick Carousel View’, ‘wp-slick-slider-and-image-carousel’).’ slick-carousel-slider ‘; } // Shortcode Parameter extract(shortcode_atts(array( ‘limit’
=> -1, ‘category’ => ”, ‘design’ => ‘design-1’, ‘image_size’ => ‘full’, ‘slidestoshow’
=> 3, ‘slidestoscroll’ => 1, ‘dots’ => ‘true’, ‘arrows’ => ‘true’, ‘autoplay’ => ‘true’,
‘loop’ => ‘true’, ‘hover_pause’ => ‘true’, ‘autoplay_interval’ => 3000, ‘speed’ => 300, ‘centermode’ => ‘false’, ‘variablewidth’ => ‘false’, ‘image_fit’ => ‘false’, ‘sliderheight’ => ”, ‘lazyload’
=> ”, ‘rtl’ => ”, ‘extra_class’ => ”, ‘className’ => ”, ‘align’ => ”, ‘dev_param_1’ => ”, ‘dev_param_2’ => ”, ), $atts, ‘slick-carousel-slider’)); $shortcode_designs = wpsisac_carousel_designs(); $limit = ! empty( $limit )
? $limit : ‘-1’; $cat = ! empty( $category ) ? explode( ‘,’, $category ) : ”; $slidestoshow = ! empty( $slidestoshow ) ? $slidestoshow : 3; $slidestoscroll
= ! empty( $slidestoscroll ) ? $slidestoscroll : 1; $design = ( $design && ( array_key_exists( trim( $design ), $shortcode_designs )) ) ? trim( $design ) : ‘design-1’; $dots = ( $dots == ‘false’ ) ? ‘false’ : ‘true’; $arrows = ( $arrows == ‘false’ ) ? ‘false’ : ‘true’; $autoplay = ( $autoplay == ‘false’ ) ? ‘false’ : ‘true’; $loop = ( $loop == ‘false’ ) ? ‘false’
: ‘true’; $hover_pause = ( $hover_pause == ‘false’ ) ? ‘false’ : ‘true’; $autoplay_interval = ! empty( $autoplay_interval ) ? $autoplay_interval : 3000; $speed = ! empty( $speed )
? $speed : 300; $sliderheight = ! empty( $sliderheight ) ? $sliderheight
: ”; $slider_height_css = ! empty( $sliderheight ) ? “height:{$sliderheight}px;” : ”; $lazyload = ( $lazyload == ‘ondemand’ || $lazyload == ‘progressive’ ) ? $lazyload : ”; // ondemand or progressive $image_fit = ( $image_fit == ‘false’ ) ? 0
: 1; $centermode = ( $centermode == ‘false’ ) ? ‘false’ : ‘true’; $variablewidth = ( $variablewidth == ‘false’ ) ? ‘false’ : ‘true’; $image_size = ! empty( $image_size )
? $image_size : ‘full’; $align = ! empty( $align ) ? ‘align’.$align
: ”; $extra_class = $extra_class .’ ‘. $align .’ ‘. $className; $extra_class = wpsisac_get_sanitize_html_classes( $extra_class ); $dev_param_1 = ! empty( $dev_param_1 ) ? $dev_param_1 : ”; $dev_param_2 = ! empty( $dev_param_2 ) ? $dev_param_2
: ”; // For RTL if( empty( $rtl ) && is_rtl() ) { $rtl = ‘true’; } elseif ( $rtl == ‘true’ ) { $rtl = ‘true’; } else { $rtl = ‘false’; } // Shortcode file $design_file_path = WPSISAC_DIR . ‘/templates/carousel/’ . $design . ‘.php’; $design_file = ( file_exists( $design_file_path ) ) ? $design_file_path : ”; // Enqueus required script wp_enqueue_script( ‘wpos-slick-jquery’ ); wp_enqueue_script( ‘wpsisac-public-script’ ); // Taking some variables $image_fit_class = ( $image_fit ) ? ‘wpsisac-image-fit’ : ”; // Slider configuration $slider_conf = compact( ‘slidestoshow’,’slidestoscroll’,’dots’, ‘arrows’, ‘autoplay’, ‘autoplay_interval’, ‘speed’, ‘rtl’, ‘centermode’ , ‘lazyload’, ‘variablewidth’, ‘loop’, ‘hover_pause’ ); ob_start(); // Taking some variables $unique = wpsisac_get_unique(); $post_type = WPSISAC_POST_TYPE; $orderby = ‘post_date’; $order = ‘DESC’;
// WP Query Parameters $args = array ( ‘post_type’ => $post_type, ‘orderby’ => $orderby, ‘order’ => $order, ‘posts_per_page’ => $limit, ); // Category Parameter if( $cat != “” ){ $args[‘tax_query’] = array( array( ‘taxonomy’
=> ‘wpsisac_slider-category’, ‘field’ => ‘term_id’, ‘terms’ => $cat ) ); } // WP Query Parameters $query = new WP_Query( $args ); $post_count = $query->post_count; // If post is there if ( $query->have_posts() ) : ?> <div class=”wpsisac-slick-carousal-wrp wpsisac-clearfix ” data-conf=””> <div id=”wpsisac-slick-carousal-” class=”wpsisac-slick-init wpsisac-slick-carousal “> wp_reset_postdata(); // Reset WP Query return ob_get_clean();}add_shortcode( ‘slick-carousel-slider’,’wpsisac_get_carousel_slider’ );
Hi, What is the best way to override a template file?
]]>Any plans to fix security bug CVE-2023-40200 ?
]]>Hello,
all of a sudden my shortcode is no longer working to display the
[slick-carousel-slider]
Please see my site and I’d appreciate a timely response.
Thanks in advance!
I just got Pro – how do I get partial images on either slide like in your sample here: https://demo.essentialplugin.com/prodemo/pro-wp-slick-slider-and-carousel-demo/slider-with-partial-slide? It says it’s design 1-5 … but 1-5 does not give that affect.
]]>
When I click on ‘skip’ or ”Allow’ I’m redirected to some link:
analytics.wponlinesupport.com
The page appears to contain adult content.
Is it a malware?
Can you Help me?
]]>Hello,
When using a center mode image carousel, there are two navigation arrows on both sides, one on top of the other. How do I fix this?
Thank you,
Lan
]]>A blank slider is added when i have 4 or more , how do I remove it?
]]>
I am a webdesigner and I have a client who wants me to add a page in his site, with a post navigation similar to this one:
https://web.archive.org/web/20220126060346/https://www.toscca.com/
I think it was done with your plugin Slick Slider, but I can’t find a demo like that.
Can you point me to the right demo so I can see if your plugin is the right one?
Thank you
Hi,
I have following issues and queries with regard to slick slider.
2. Is it possible to create a Testimonal cards like slider as shown in https://sensationaltheme.com/demo-kiducation/ under “Happy Parents” section using Slick Slider.
3. Live chat is not responding in the official website essentialplugins.com for slick-slider
]]>hi, I am a very beginner and have 2 problems by creating my homepage. How could I modify
I can see it clearly in WordPress and even in the preview of any of the above browsers but when I look online in any browser, the slider is not there and there is a giant gap. When inspect the element, I can see that is there.
]]>Is there a way to enable the Gutenberg editor when editing slides? Or at least add more controls to the classic editor WP Slick Slider uses?
I’m in need to stylize text colors, but there’s no way besides using HTML/CSS.
]]>Is there a way to enable the Gutenberg editor when editing slides? Or at least add more controls to the classic editor WP Slick Slider uses?
I’m in need to stylize text colors and there’s no way besides using HTML/CSS.
Thanks in advance!
]]>Is there a way to add a pause button.
Thanks in advance!
]]>After installing and activating the plugin I get the message:
“
Don’t ever miss an opportunity to opt in for Email Notifications / Announcements about exciting New Features and Update Releases.
Contribute in helping us making WP Slick Slider and Image Carousel compatible with most themes and plugins by allowing to share non-sensitive data to essentialplugin.com about your website.
If you skip this, that’s okay!?WP Slick Slider and Image Carousel?will still work just fine.”
When I click on ‘skip’ I’m redirected to some link:
analytics.wponlinesupport.com
The page is blank, pushing back doesn’t help. the plugin won’t work.
I’ve got a few websites with your plugin installed and after updating to the latest version, the arrow buttons of only one of them changed from <button> to <span>.
I can’t find what I’m doing wrong or where to change this behavior.
Can you help me please?
]]>I’ve just updated to version 3.1.3 and the “Image Height” parameter from the Gutenburg block limits the value at “100”.
Initially I thought it might have been the theme or something else messing with the plugin’s code, but I’ve tried on several different installations and got the same result on all of them.
For now I just switched for the shortcode, but I like the Gutenberg block because other people can mess with it without having to read documentation.
Thanks in advance for your time and support!
]]>