<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Howto Archives &ndash; Gutenslider</title>
	<atom:link href="https://gutenslider.org/category/howto/feed/" rel="self" type="application/rss+xml" />
	<link>https://gutenslider.org/category/howto/</link>
	<description>The last WordPress Slider you will ever need.</description>
	<lastBuildDate>Thu, 06 Jul 2023 16:31:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.3</generator>

<image>
	<url>https://gutenslider.org/wp-content/uploads/2021/04/cropped-gutenslider_logo-300x300-1-1-50x50.png</url>
	<title>Howto Archives &ndash; Gutenslider</title>
	<link>https://gutenslider.org/category/howto/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Setting Slider Defaults with PHP WordPress filters (Pro)</title>
		<link>https://gutenslider.org/setting-slider-defaults-with-php-wordpress-filters-pro/</link>
		
		<dc:creator><![CDATA[eedee]]></dc:creator>
		<pubDate>Sat, 15 Oct 2022 20:44:55 +0000</pubDate>
				<category><![CDATA[Howto]]></category>
		<guid isPermaLink="false">https://gutenslider.org/?p=4541</guid>

					<description><![CDATA[<p>The situation might occur when you are building a website for a customer or yourself and you want to change the default settings of Gutenslider. This short post explains how you can easily do that from a developer perspective. From a user perspective, you can always copy and paste the block with your favorite settings &#8230;</p>
<p class="read-more"> <a class="ast-button" href="https://gutenslider.org/setting-slider-defaults-with-php-wordpress-filters-pro/"> <span class="screen-reader-text">Setting Slider Defaults with PHP WordPress filters (Pro)</span> Read More »</a></p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/setting-slider-defaults-with-php-wordpress-filters-pro/">Setting Slider Defaults with PHP WordPress filters (Pro)</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>The situation might occur when you are building a website for a customer or yourself and you want to change the default settings of Gutenslider. This short post explains how you can easily do that from a developer perspective. From a user perspective, you can always copy and paste the block with your favorite settings / content.</p>



<p>Gutenslider adds a filter to WordPress that you can use to manipulate the default attributes of the slider. If you have never worked with filters before, fear not. It is easy. Read all you need for the beginning on the <a href="https://developer.wordpress.org/plugins/hooks/filters/">WordPress filter page for plugin developers</a> or just follow along.</p>



<p>The filter Gutenslider adds to alter its attributes is called <code>gutenslider_attributes</code> and gets passed an array of <code>$attributes</code> with a <code>type</code> and a <code>default</code> value that looks something like this:</p>



<pre class="wp-block-code"><code>$gutenslider_attributes = array(
  'gsBlockId'           =&gt; array(
    'type'    =&gt; 'string',
  ),
  'media' =&gt; array(
    'type' =&gt; 'array',
    'default' =&gt; array(),
  ),
  'align'             =&gt; array(
    'type'    =&gt; 'string',
    'default' =&gt; 'none',
  ),
  'contentMode'       =&gt; array(
    'type'    =&gt; 'string',
    'default' =&gt; 'change',
  ),
  ... //many more attributes here
)</code></pre>



<p>For reference, you can find the file in your gutenslider plugin directory in <code>src/blocks/gutenslider/attributes.php</code>.</p>



<h2 class="wp-block-heading">Adding your custom filter</h2>



<p>First take a look at all available attributes and their default values. When you found the attribute you want to change, add a filter to one of your included php files (e.g. the theme&#8217;s <code>function.php</code>):</p>



<pre class="wp-block-code"><code>add_filter(
    'gutenslider_attributes',
    function ($attributes) {
        $new_defaults = array(
            'lgBgColor' =&gt; array(
                'type' =&gt; 'string',
                'default' =&gt; '#ff00ff',
            ),
        );
        return array_merge($attributes, $new_defaults);
    }
);</code></pre>



<p>You see, that the example code changes the default background color of the lightgallery named <code>lgBgColor</code> to <code>#ff00ff</code> instead of the default <code>#ffffff</code> defined in <code>attributes.php</code>.</p>



<p class="has-pale-cyan-blue-background-color has-background">As Gutenslider adds two blocks <code>Gutenslider</code> and <code>Gutenslide</code> (&lt;- a block for a single slide), you might not be able to find the attribute you are looking for in the attributes file named above. Instead, look in the <code>attributes.php</code> of Gutenslide (&lt;- no &#8216;r&#8217;) and use the <code>gutenslide_attributes</code> filter instead.</p>



<h2 class="wp-block-heading">The Result</h2>



<p>You can see in the screenshot a brand new slider with the default background color set to the value of the above example.</p>



<figure class="wp-block-image size-large"><img decoding="async" fetchpriority="high" width="1024" height="526" src="https://gutenslider.org/wp-content/uploads/2022/10/Bildschirmfoto-2022-10-15-um-22.51.56-1024x526.png" alt="" class="wp-image-4546" srcset="https://gutenslider.org/wp-content/uploads/2022/10/Bildschirmfoto-2022-10-15-um-22.51.56-1024x526.png 1024w, https://gutenslider.org/wp-content/uploads/2022/10/Bildschirmfoto-2022-10-15-um-22.51.56-300x154.png 300w, https://gutenslider.org/wp-content/uploads/2022/10/Bildschirmfoto-2022-10-15-um-22.51.56-768x395.png 768w, https://gutenslider.org/wp-content/uploads/2022/10/Bildschirmfoto-2022-10-15-um-22.51.56-50x26.png 50w, https://gutenslider.org/wp-content/uploads/2022/10/Bildschirmfoto-2022-10-15-um-22.51.56-1600x823.png 1600w, https://gutenslider.org/wp-content/uploads/2022/10/Bildschirmfoto-2022-10-15-um-22.51.56-1536x790.png 1536w, https://gutenslider.org/wp-content/uploads/2022/10/Bildschirmfoto-2022-10-15-um-22.51.56-2048x1053.png 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>If you need any more help and you are a Gutenslider Pro user, do not hesitate to contact us using the contact form in your WordPress backend. <code>Settings -> Gutenslider -> Contact Us (tab at top)</code></p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/setting-slider-defaults-with-php-wordpress-filters-pro/">Setting Slider Defaults with PHP WordPress filters (Pro)</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Gutenslider Custom Javascript scripting</title>
		<link>https://gutenslider.org/gutenslider-custom-javascript-scripting/</link>
		
		<dc:creator><![CDATA[eedee]]></dc:creator>
		<pubDate>Wed, 05 Oct 2022 08:36:01 +0000</pubDate>
				<category><![CDATA[Howto]]></category>
		<guid isPermaLink="false">https://gutenslider.org/?p=4498</guid>

					<description><![CDATA[<p>On custom websites with complex designs, there might be the need for more options than Gutenslider has to offer out of the box. In this post we show you, how you can use javascript to customize your Gutenslider even further by executing functions on the underlying swiper instance. For this example we are building a &#8230;</p>
<p class="read-more"> <a class="ast-button" href="https://gutenslider.org/gutenslider-custom-javascript-scripting/"> <span class="screen-reader-text">Gutenslider Custom Javascript scripting</span> Read More »</a></p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/gutenslider-custom-javascript-scripting/">Gutenslider Custom Javascript scripting</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>On custom websites with complex designs, there might be the need for more options than Gutenslider has to offer out of the box. In this post we show you, how you can use javascript to customize your Gutenslider even further by executing functions on the underlying swiper instance.</p>



<p>For this example we are building a simple Gutenslider that is controlled by two Gutenberg button blocks, that will initiate the previous and next slide functions.</p>


<div id="gutenslider-7dyparcj6" class="wp-block-eedee-block-gutenslider gs-frontend content-change alignnone arrow-style-1 arrow-position-sides arrow-mb-none arrows-lg arrows-md arrows-sm dot-style-1 dots-lg-none dots-md-none dots-sm-none dot-position-bottom is-position-center-center mb-none wrap-auto-height" data-parallax-direction="down" data-parallax-amount="1.3" data-lg-transition="lg-slide" data-hash="" ><div class="eedee-swiper-outer" style="--gutenslider-min-height: 50vh;--gutenslider-arrow-size: 30px;--gutenslider-dot-size: 25px;--gutenslider-arrow-color: #ffffff;--gutenslider-dot-color: #ffffff;--gutenslider-padding-y-mobile: 40px;--gutenslider-padding-x-mobile: 40px;--gutenslider-padding-y-tablet: 40px;--gutenslider-padding-x-tablet: 40px;--gutenslider-padding-y-desktop: 40px;--gutenslider-padding-x-desktop: 40px;--gutenslider-bg-image: url();--gutenslider-min-height-md: 50vh;--gutenslider-min-height-sm: 50vh;--gutenslider-padding-x: 40px;--gutenslider-padding-x-md: 40px;--gutenslider-padding-x-sm: 20px;--gutenslider-padding-y: 40px;--gutenslider-padding-y-md: 40px;--gutenslider-padding-y-sm: 20px;--gutenslider-arrow-size-md: 30px;--gutenslider-arrow-size-sm: 30px;--gutenslider-dot-size-md: 25px;--gutenslider-dot-size-sm: 25px;--gutenslider-arrow-bg-color: transparent;--gutenslider-arrow-hover-color: #eeeeee;--gutenslider-arrow-bg-hover-color: transparent;--gutenslider-arrow-x-offset: 10px;--gutenslider-arrow-x-offset-md: 10px;--gutenslider-arrow-x-offset-sm: 10px;--gutenslider-arrow-y-offset: 0px;--gutenslider-arrow-y-offset-md: 0px;--gutenslider-arrow-y-offset-sm: 0px;--gutenslider-arrow-x-spacing: 0px;--gutenslider-dot-y-offset: 10px;--gutenslider-dot-y-offset-md: 10px;--gutenslider-dot-y-offset-sm: 10px;--gutenslider-margin-x: 0px;--gutenslider-margin-x-md: 0px;--gutenslider-margin-x-sm: 0px;--gutenslider-margin-y: 40px;--gutenslider-margin-y-md: 40px;--gutenslider-margin-y-sm: 40px;--gutenslider-divider-top: 60px;--gutenslider-divider-bottom: 60px;--gutenslider-lightgallery-bg: #ffffff;--gutenslider-lightgallery-font: #000000;--gs-first-pos: 50% 50%;--gs-gap-vertical: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );--gs-gap-horizontal: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );"><div class="gutenslider-divider-top" style="color:#fff;"></div><div class="swiper" data-settings='{"autoplay":false,"speed":700,"direction":"horizontal","autoHeight":"","loop":true,"centeredSlides":true,"spaceBetween":47,"slidesPerView":3,"slidesPerGroup":1,"effect":"slide","coverflowEffect":{"rotate":30,"slideShadows":false,"depth":100,"stretch":50,"modifier":1},"fadeEffect":{"crossFade":true},"zoom":"","navigation":{"nextEl":"#gutenslider-7dyparcj6 .eedee-gutenslider-next","prevEl":"#gutenslider-7dyparcj6 .eedee-gutenslider-prev"},"pagination":{"type":"bullets","clickable":true,"dynamicBullets":false,"el":"#gutenslider-7dyparcj6 .eedee-gutenslider-pagination"},"pauseOnHover":"1","watchSlidesProgress":true,"watchSlidesVisibility":true,"settingsMd":{"autoHeight":"","slidesPerView":3,"slidesPerGroup":1,"spaceBetween":47,"loop":true},"settingsLg":{"autoHeight":"","slidesPerView":3,"slidesPerGroup":1,"spaceBetween":47,"loop":true},"hasLg":false,"hasLgCounter":true,"isFullScreen":false,"arrowsFollowMouse":false,"lgTitle":"none","lgCaption":"none","lgThumbnails":true,"lgZoomEnabled":false,"keyboard":{"keyboard":{"enabled":true,"onlyInViewport":true}},"hashNavigation":false,"dividers":false}'><div class="swiper-wrapper">
<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:200;" data-hash=""><div class="eedee-background-div bg-image"><img width="1024" height="683" class="wp-image-3734" src="https://gutenslider.org/wp-content/uploads/2021/05/uebiglmii5a-1024x683.jpg" alt="low angle photo of coconut trees beside body of water" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Recal Media" srcset="https://gutenslider.org/wp-content/uploads/2021/05/uebiglmii5a-1024x683.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/uebiglmii5a-300x200.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/uebiglmii5a-768x512.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/uebiglmii5a-1536x1024.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/uebiglmii5a-2048x1365.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:199;" data-hash=""><div class="eedee-background-div bg-image"><img width="1024" height="680" class="wp-image-3737" src="https://gutenslider.org/wp-content/uploads/2021/05/emwvfploong-1024x680.jpg" alt="green and brown tree during daytime" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Tommy Cox" srcset="https://gutenslider.org/wp-content/uploads/2021/05/emwvfploong-1024x680.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/emwvfploong-300x199.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/emwvfploong-768x510.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/emwvfploong-1536x1020.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/emwvfploong-2048x1361.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:225;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1024" height="768" class="wp-image-3735" src="https://gutenslider.org/wp-content/uploads/2021/05/2pgwjpc_c_0-1024x768.jpg" alt="silhouette photography of palm trees" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Hussan Amir" srcset="https://gutenslider.org/wp-content/uploads/2021/05/2pgwjpc_c_0-1024x768.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/2pgwjpc_c_0-300x225.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/2pgwjpc_c_0-768x576.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/2pgwjpc_c_0-1536x1152.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/2pgwjpc_c_0-2048x1536.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:179;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1024" height="610" class="wp-image-3549" src="https://gutenslider.org/wp-content/uploads/2021/05/01_igfr7hd4-1024x610.jpg" alt="bird&#039;s eye view photograph of green mountains" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Qingbao Meng" srcset="https://gutenslider.org/wp-content/uploads/2021/05/01_igfr7hd4-1024x610.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/01_igfr7hd4-300x179.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/01_igfr7hd4-768x457.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/01_igfr7hd4-1536x914.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/01_igfr7hd4-2048x1219.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:195;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1024" height="665" class="wp-image-3650" src="https://gutenslider.org/wp-content/uploads/2021/05/cattle-herd-grazing-6241505-1024x665.jpg" alt="cattle, herd, grazing" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="cattle, herd, grazing-6241505" data-description="Starter Templates Image - cattle, herd, grazing-6241505.jpg" srcset="https://gutenslider.org/wp-content/uploads/2021/05/cattle-herd-grazing-6241505-1024x665.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/cattle-herd-grazing-6241505-300x195.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/cattle-herd-grazing-6241505-768x499.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/cattle-herd-grazing-6241505.jpg 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:199;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1024" height="678" class="wp-image-3546" src="https://gutenslider.org/wp-content/uploads/2021/05/f0ylss50bs-1024x678.jpg" alt="green trees on forest during daytime" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Kunal Shinde" srcset="https://gutenslider.org/wp-content/uploads/2021/05/f0ylss50bs-1024x678.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/f0ylss50bs-300x199.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/f0ylss50bs-768x509.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/f0ylss50bs-1536x1017.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/f0ylss50bs-2048x1356.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:200;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1024" height="682" class="wp-image-3547" src="https://gutenslider.org/wp-content/uploads/2021/05/jfcviyfycus-1024x682.jpg" alt="forest trees" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Lukasz Szmigiel" srcset="https://gutenslider.org/wp-content/uploads/2021/05/jfcviyfycus-1024x682.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/jfcviyfycus-300x200.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/jfcviyfycus-768x511.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/jfcviyfycus-1536x1023.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/jfcviyfycus-2048x1364.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>
</div></div><button class="eedee-gutenslider-nav eedee-gutenslider-prev"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><circle class="bg" cx="13" cy="12" r="11" /><path fill="none" d="M0 0h24v24H0z"/><path class="arrow" d="M10.828 12l4.95 4.95-1.414 1.414L8 12l6.364-6.364 1.414 1.414z"/></svg></button><button class="eedee-gutenslider-nav eedee-gutenslider-next"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><circle class="bg" cx="11" cy="12" r="11" /><path fill="none" d="M0 0h24v24H0z"/><path class="arrow" d="M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z"/></svg></button><div class="eedee-gutenslider-pagination"></div><div class="gutenslider-divider-bottom " style="color:#fff;"></div></div></div>


<div class="wp-block-columns is-layout-flex wp-container-4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>You can use arbitraty elements as controls for your slider. </p>



<p>You need the following prerequisites:</p>



<ul>
<li>unique identifier of slider (e.g. id from block advanced controls)</li>



<li>unique identifier of the elements you want to use as controls (e.g. unique class name)</li>



<li>have some little javascript knowledge and know how to include javascript in your page <br>(prefer to add it to a script file that is already loaded &#8211; e.g. theme js)</li>
</ul>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>Use the buttons below to control your slider</p>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button gs-custom-prev"><a class="wp-block-button__link wp-element-button">previous Slide</a></div>



<div class="wp-block-button gs-custom-next"><a class="wp-block-button__link wp-element-button">Next Slide</a></div>



<div class="wp-block-button gs-custom-slide-3"><a class="wp-block-button__link wp-element-button">Go To slide 3</a></div>
</div>
</div>
</div>



<h2 class="wp-block-heading">Selecting the elements</h2>



<p>To get the custom logic working, we need to select the correct DOM elements for the Gutenslider you want to control (1), the &#8220;Previous Slide&#8221; Button (2), the &#8220;Next Slide&#8221; Button (3), the &#8220;Go to Slide 3&#8221; Button (4). The Gutenslider plugin gives each slider a custom unique id that you can use as a queryselector in javascript. You can find that id in <code><mark style="background-color:var(--ast-global-color-6)" class="has-inline-color">Block Settings > Advanced > Slider ID</mark></code>. In this example it is e.g. <br><code><mark style="background-color:var(--ast-global-color-4)" class="has-inline-color">gutenslider-7dyparcj6</mark></code>.</p>



<p>For the elements you want as controllers, it is easiest to give them a custom unique class. Almost all Gutenberg Blocks have a setting in the Block settings Advanced tab to add <code>Additional CSS class(es</code>) at the very bottom. We here chose <code>gs-custom-next</code> and <code>gs-custom-</code>prev.</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="ast-oembed-container" style="height: 100%;"><div class="slimfast_yl"><div class="slimfast_wrap"><div class="slimfast_player" data-embed="Fi38dSW-uGo" id="player_Fi38dSW-uGo"><div class="play-button"></div></div></div></div></div>
</div></figure>



<h2 class="wp-block-heading">The Code</h2>



<p>We here show you the annotated javascript code you can insert into your page. If you have no idea how to do it, you can use the <a href="https://de.wordpress.org/plugins/insert-headers-and-footers/#description">WPCode plugin</a>, that allows you to insert arbitrary javascript into your page. Note that in that case you need to wrap the code with<br> <code>&lt;script type="text/javascript"> ... &lt;/script></code></p>



<pre class="wp-block-code has-ast-global-color-4-background-color has-background"><code>//test if your script was loaded - check browser console log
console.log( 'test custom scripting' );

//define variables for all your relevant elements
const customNextButton = document.querySelector('.gs-custom-next');
const customPrevButton = document.querySelector('.gs-custom-prev');
const controlledGutenslider = document.querySelector('#gutenslider-83tfsie32');

//test if all your elements were selected correctly
console.log( customNextButton, customPrevButton, controlledGutenslider );

//add event listeners to buttons
customNextButton.addEventListener( 'click', ( e ) => {
	if (
		controlledGutenslider &amp;&amp;
		controlledGutenslider.gutenslider &amp;&amp;
		controlledGutenslider.gutenslider.swiperInstance
	) {
		// go to next slide
		controlledGutenslider.gutenslider.swiperInstance.slideNext()
	}
})

customPrevButton.addEventListener( 'click', ( e ) => {
	if (
		controlledGutenslider &amp;&amp;
		controlledGutenslider.gutenslider &amp;&amp;
		controlledGutenslider.gutenslider.swiperInstance
	) {
		// go to previous slide
		controlledGutenslider.gutenslider.swiperInstance.slidePrev()
	}
})</code></pre>



<p class="has-luminous-vivid-amber-background-color has-background">Before publishing in production you should check:<br>&#8211; are the ids / classnames correct for your sliders and elements that control the block?<br>&#8211; have you removed all <code>console.log</code> calls from the code</p>



<p>If you are having issues implementing this, <a href="https://gutenslider.org/gutenslider-pro-pricing/">Gutenslider Pro </a>includes support for custom scripting.</p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/gutenslider-custom-javascript-scripting/">Gutenslider Custom Javascript scripting</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Hash Navigation</title>
		<link>https://gutenslider.org/hash-navigation/</link>
		
		<dc:creator><![CDATA[eedee]]></dc:creator>
		<pubDate>Thu, 09 Dec 2021 15:01:00 +0000</pubDate>
				<category><![CDATA[Gutenslider Update]]></category>
		<category><![CDATA[Howto]]></category>
		<guid isPermaLink="false">https://gutenslider.org/?p=4218</guid>

					<description><![CDATA[<p>Some user requests reached us asking if it was possible to directly link to certain slides in their sliders. With Gutenslider 5.5.2 and onwards this is now possible, as we enabled the Hash Navigation Module of swiper in Gutenslider Free and Pro. Read here all that you need to know, but first see it in &#8230;</p>
<p class="read-more"> <a class="ast-button" href="https://gutenslider.org/hash-navigation/"> <span class="screen-reader-text">Hash Navigation</span> Read More »</a></p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/hash-navigation/">Hash Navigation</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Some user requests reached us asking if it was possible to directly link to certain slides in their sliders. With Gutenslider 5.5.2 and onwards this is now possible, as we enabled the Hash Navigation Module of swiper in Gutenslider Free and Pro. Read here all that you need to know, but first see it in action.</p>



<p class="has-black-color has-pale-cyan-blue-background-color has-text-color has-background">Notice how the url changes and try copy pasting the url to start at the slide you left. You can also use <a href="#holidays-4"><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-purple-color">links</mark></a> to navigate with buttons or arbitrary &lt;a&gt; elements on your website.</p>


<div id="gutenslider-yn1ddd4gf" class="wp-block-eedee-block-gutenslider gs-frontend content-change alignfull arrow-style-1 arrow-position-sides arrow-mb-none arrows-lg arrows-md arrows-sm dot-style-1 dots-lg dots-md dots-sm dot-position-bottom is-position-center-center mb-none lg-zoom-icon wrap-auto-height" data-parallax-direction="down" data-parallax-amount="1.3" data-lg-transition="lg-slide" data-hash="holidays" ><div class="eedee-swiper-outer" style="--gutenslider-min-height: 50vh;--gutenslider-arrow-size: 30px;--gutenslider-dot-size: 25px;--gutenslider-arrow-color: #ffffff;--gutenslider-dot-color: #ffffff;--gutenslider-padding-y-mobile: 40px;--gutenslider-padding-x-mobile: 40px;--gutenslider-padding-y-tablet: 40px;--gutenslider-padding-x-tablet: 40px;--gutenslider-padding-y-desktop: 40px;--gutenslider-padding-x-desktop: 40px;--gutenslider-bg-image: url();--gutenslider-min-height-md: 50vh;--gutenslider-min-height-sm: 50vh;--gutenslider-padding-x: 40px;--gutenslider-padding-x-md: 40px;--gutenslider-padding-x-sm: 20px;--gutenslider-padding-y: 40px;--gutenslider-padding-y-md: 40px;--gutenslider-padding-y-sm: 20px;--gutenslider-arrow-size-md: 30px;--gutenslider-arrow-size-sm: 30px;--gutenslider-dot-size-md: 25px;--gutenslider-dot-size-sm: 25px;--gutenslider-arrow-bg-color: transparent;--gutenslider-arrow-hover-color: #eeeeee;--gutenslider-arrow-bg-hover-color: transparent;--gutenslider-arrow-x-offset: 10px;--gutenslider-arrow-x-offset-md: 10px;--gutenslider-arrow-x-offset-sm: 10px;--gutenslider-arrow-y-offset: 0px;--gutenslider-arrow-y-offset-md: 0px;--gutenslider-arrow-y-offset-sm: 0px;--gutenslider-arrow-x-spacing: 0px;--gutenslider-dot-y-offset: 10px;--gutenslider-dot-y-offset-md: 10px;--gutenslider-dot-y-offset-sm: 10px;--gutenslider-margin-x: 0px;--gutenslider-margin-x-md: 0px;--gutenslider-margin-x-sm: 0px;--gutenslider-margin-y: 100px;--gutenslider-margin-y-md: 0px;--gutenslider-margin-y-sm: 0px;--gutenslider-divider-top: 60px;--gutenslider-divider-bottom: 60px;--gutenslider-lightgallery-bg: #ffffff;--gutenslider-lightgallery-font: #000000;--gs-first-pos: 50% 50%;--gs-gap-vertical: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );--gs-gap-horizontal: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );"><div class="gutenslider-divider-top" style="color:#fff;"></div><div class="swiper" data-settings='{"autoplay":{"delay":3000,"pauseOnMouseEnter":true,"disableOnInteraction":false},"speed":700,"direction":"horizontal","autoHeight":"","loop":false,"centeredSlides":true,"spaceBetween":94,"slidesPerView":"auto","slidesPerGroup":1,"effect":"slide","coverflowEffect":{"rotate":30,"slideShadows":false,"depth":100,"stretch":50,"modifier":1},"fadeEffect":{"crossFade":true},"zoom":"","navigation":{"nextEl":"#gutenslider-yn1ddd4gf .eedee-gutenslider-next","prevEl":"#gutenslider-yn1ddd4gf .eedee-gutenslider-prev"},"pagination":{"type":"bullets","clickable":true,"dynamicBullets":false,"el":"#gutenslider-yn1ddd4gf .eedee-gutenslider-pagination"},"pauseOnHover":"1","watchSlidesProgress":true,"watchSlidesVisibility":true,"settingsMd":{"autoHeight":"","slidesPerView":"auto","slidesPerGroup":1,"spaceBetween":94,"loop":false},"settingsLg":{"autoHeight":"","slidesPerView":"auto","slidesPerGroup":1,"spaceBetween":94,"loop":false},"hasLg":true,"hasLgCounter":true,"isFullScreen":false,"arrowsFollowMouse":false,"lgTitle":"none","lgCaption":"none","lgThumbnails":true,"lgZoomEnabled":false,"keyboard":{"keyboard":{"enabled":true,"onlyInViewport":true}},"hashNavigation":{"replaceState":true,"watchState":true},"dividers":false}'><div class="swiper-wrapper">
<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:200;" data-hash="flamingo"><div class="eedee-background-div bg-image"><img loading="lazy" width="2560" height="1707" class="wp-image-4024" src="https://gutenslider.org/wp-content/uploads/2021/05/55mysyrkf5w-scaled.jpg" alt="pink inflatable flamingo and green inflatable ring" decoding="async" style="object-fit: cover; object-position: 10% 10%;"  data-title="Photo by Toni Cuenca" srcset="https://gutenslider.org/wp-content/uploads/2021/05/55mysyrkf5w-scaled.jpg 2560w, https://gutenslider.org/wp-content/uploads/2021/05/55mysyrkf5w-300x200.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/55mysyrkf5w-1024x683.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/55mysyrkf5w-768x512.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/55mysyrkf5w-1536x1024.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/55mysyrkf5w-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:240;--ed-vh:300;" data-hash="beach"><div class="eedee-background-div bg-image"><img loading="lazy" width="2049" height="2560" class="wp-image-4022" src="https://gutenslider.org/wp-content/uploads/2021/05/c9xgrb8hqbi-scaled.jpg" alt="bird&#039;s-eye view photography of people in seashore" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Guzmán Barquín" srcset="https://gutenslider.org/wp-content/uploads/2021/05/c9xgrb8hqbi-scaled.jpg 2049w, https://gutenslider.org/wp-content/uploads/2021/05/c9xgrb8hqbi-240x300.jpg 240w, https://gutenslider.org/wp-content/uploads/2021/05/c9xgrb8hqbi-820x1024.jpg 820w, https://gutenslider.org/wp-content/uploads/2021/05/c9xgrb8hqbi-768x960.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/c9xgrb8hqbi-1229x1536.jpg 1229w, https://gutenslider.org/wp-content/uploads/2021/05/c9xgrb8hqbi-1639x2048.jpg 1639w" sizes="(max-width: 2049px) 100vw, 2049px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:214;--ed-vh:300;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1829" height="2560" class="wp-image-4020" src="https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-scaled.jpg" alt="sliced watermelon with lemon on shot glass" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by ShengGeng Lin" srcset="https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-scaled.jpg 1829w, https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-214x300.jpg 214w, https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-731x1024.jpg 731w, https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-768x1075.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-1097x1536.jpg 1097w, https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-1463x2048.jpg 1463w" sizes="(max-width: 1829px) 100vw, 1829px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:200;--ed-vh:300;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1707" height="2560" class="wp-image-4019" src="https://gutenslider.org/wp-content/uploads/2021/05/uljbyg2ucvi-scaled.jpg" alt="brown tree" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Angello Pro" srcset="https://gutenslider.org/wp-content/uploads/2021/05/uljbyg2ucvi-scaled.jpg 1707w, https://gutenslider.org/wp-content/uploads/2021/05/uljbyg2ucvi-200x300.jpg 200w, https://gutenslider.org/wp-content/uploads/2021/05/uljbyg2ucvi-683x1024.jpg 683w, https://gutenslider.org/wp-content/uploads/2021/05/uljbyg2ucvi-768x1152.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/uljbyg2ucvi-1024x1536.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/uljbyg2ucvi-1365x2048.jpg 1365w" sizes="(max-width: 1707px) 100vw, 1707px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:200;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="2560" height="1702" class="wp-image-4017" src="https://gutenslider.org/wp-content/uploads/2021/05/68cspwtnafo-scaled.jpg" alt="woman walking on seaside while holding woven bag" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Tamara Bellis" srcset="https://gutenslider.org/wp-content/uploads/2021/05/68cspwtnafo-scaled.jpg 2560w, https://gutenslider.org/wp-content/uploads/2021/05/68cspwtnafo-300x200.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/68cspwtnafo-1024x681.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/68cspwtnafo-768x511.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/68cspwtnafo-1536x1021.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/68cspwtnafo-2048x1362.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:169;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="2560" height="1440" class="wp-image-4018" src="https://gutenslider.org/wp-content/uploads/2021/05/7rqf2x6axxi-scaled.jpg" alt="white and multicolored beach ball" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Raphaël Biscaldi" srcset="https://gutenslider.org/wp-content/uploads/2021/05/7rqf2x6axxi-scaled.jpg 2560w, https://gutenslider.org/wp-content/uploads/2021/05/7rqf2x6axxi-300x169.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/7rqf2x6axxi-1024x576.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/7rqf2x6axxi-768x432.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/7rqf2x6axxi-1536x864.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/7rqf2x6axxi-2048x1152.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>
</div></div><button class="eedee-gutenslider-nav eedee-gutenslider-prev"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><circle class="bg" cx="13" cy="12" r="11" /><path fill="none" d="M0 0h24v24H0z"/><path class="arrow" d="M10.828 12l4.95 4.95-1.414 1.414L8 12l6.364-6.364 1.414 1.414z"/></svg></button><button class="eedee-gutenslider-nav eedee-gutenslider-next"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><circle class="bg" cx="11" cy="12" r="11" /><path fill="none" d="M0 0h24v24H0z"/><path class="arrow" d="M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z"/></svg></button><div class="eedee-gutenslider-pagination"></div><div class="gutenslider-divider-bottom " style="color:#fff;"></div></div></div>


<h2 class="wp-block-heading" id="hash-navigation-settings">Hash Navigation Settings</h2>



<div class="wp-block-media-text is-stacked-on-mobile is-vertically-aligned-top" style="grid-template-columns:18% auto"><figure class="wp-block-media-text__media"><img decoding="async" loading="lazy" width="380" height="1024" src="https://gutenslider.org/wp-content/uploads/2021/12/Bildschirmfoto-2021-12-09-um-16.01.51-380x1024.png" alt="" class="wp-image-4230 size-full" srcset="https://gutenslider.org/wp-content/uploads/2021/12/Bildschirmfoto-2021-12-09-um-16.01.51-380x1024.png 380w, https://gutenslider.org/wp-content/uploads/2021/12/Bildschirmfoto-2021-12-09-um-16.01.51-111x300.png 111w, https://gutenslider.org/wp-content/uploads/2021/12/Bildschirmfoto-2021-12-09-um-16.01.51.png 514w" sizes="(max-width: 380px) 100vw, 380px" /></figure><div class="wp-block-media-text__content">
<p>To enable hash navigation you can go to Gutenslider Block <code>Advanced Settings</code> at the very bottom and check <code>Enable Hash Navigation</code>, which is disabled by default.</p>



<p>In <a href="https://gutenslider.org/gutenslider-pro-pricing/">Gutenslider Pro</a>, you can additionally set a slider hash id: That is the id that shows in the browsers location, as long as a slide is active that does not have its own hash id.</p>



<p>In the example above we set it to <code>holidays</code> and you can see it on slides 3,4,5,6. The first to slides have their own hash id which you can find in the <strong>slides&#8217; block settings</strong>. Check the example, where slide 1 has the id: <code>flamingo</code> and slide 2 the id <code>beach</code>.</p>



<p>In Gutenslider Free you can totally use hash navigation to set direct links to your slides, you can however not control the displayed text in the browser location bar.</p>



<p>That said, go ahead and hash navigation to your sliders if you feel like it.</p>
</div></div>
<p>The post <a rel="nofollow" href="https://gutenslider.org/hash-navigation/">Hash Navigation</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Add Custom Arrows to your WordPress Sliders</title>
		<link>https://gutenslider.org/adding-custom-arrows-to-your-wordpress-sliders/</link>
		
		<dc:creator><![CDATA[eedee]]></dc:creator>
		<pubDate>Sun, 24 Oct 2021 10:26:00 +0000</pubDate>
				<category><![CDATA[Howto]]></category>
		<guid isPermaLink="false">https://gutenslider.org/?p=4155</guid>

					<description><![CDATA[<p>In this post you will learn how to add custom arrows to your Gutenslider. You can then use the arrows in all your sliders on the same page. You will learn: How to format your svg arrow files to seamlessly integrate with the backend How to write a WordPress filter to add your arrow to &#8230;</p>
<p class="read-more"> <a class="ast-button" href="https://gutenslider.org/adding-custom-arrows-to-your-wordpress-sliders/"> <span class="screen-reader-text">Add Custom Arrows to your WordPress Sliders</span> Read More »</a></p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/adding-custom-arrows-to-your-wordpress-sliders/">Add Custom Arrows to your WordPress Sliders</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>In this post you will learn how to add custom arrows to your Gutenslider. You can then use the arrows in all your sliders on the same page. You will learn:</p>



<ul><li>How to format your svg arrow files to seamlessly integrate with the backend </li><li>How to write a WordPress filter to add your arrow to the Gutenberg UI Backend</li><li>How to select your arrows for the new Slider</li></ul>



<p>Depending on the complexity of your SVG and your knowledge this will take you probably 15-30min.</p>



<p class="has-text-align-center has-pale-cyan-blue-background-color has-background">Custom Arrows is a <a href="https://gutenslider.org/gutenslider-pro-pricing/">Gutenslider Pro</a> feature</p>



<h2 class="wp-block-heading" id="step1-preparing-the-svg-graphic">Step1 &#8211; Preparing the SVG Graphic</h2>



<p>For custom arrows, you will usually want to choose two svg graphics. One for the previous-arrow and one for the next-arrow. You can of course only pick / select one and mirror it then. For demonstration purposes we will use Adobe Illustrator for vector graphic manipulation but you can of course use other tools.</p>



<h3 class="wp-block-heading" id="trimming">Trimming</h3>



<p>After opening the svg, you will want to make sure no useless data is included. It will clutter the svg code you need later for integration into the slider. So on the layers view on the right, make sure no extra clipping paths, or layers are visible. If they are, you can delete them.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img decoding="async" loading="lazy" width="1024" height="714" src="https://gutenslider.org/wp-content/uploads/2021/10/Bildschirmfoto-2021-11-17-um-13.44.26-1024x714.png" alt="" class="wp-image-4177" srcset="https://gutenslider.org/wp-content/uploads/2021/10/Bildschirmfoto-2021-11-17-um-13.44.26-1024x714.png 1024w, https://gutenslider.org/wp-content/uploads/2021/10/Bildschirmfoto-2021-11-17-um-13.44.26-300x209.png 300w, https://gutenslider.org/wp-content/uploads/2021/10/Bildschirmfoto-2021-11-17-um-13.44.26-768x536.png 768w, https://gutenslider.org/wp-content/uploads/2021/10/Bildschirmfoto-2021-11-17-um-13.44.26-1600x1116.png 1600w, https://gutenslider.org/wp-content/uploads/2021/10/Bildschirmfoto-2021-11-17-um-13.44.26-1536x1072.png 1536w, https://gutenslider.org/wp-content/uploads/2021/10/Bildschirmfoto-2021-11-17-um-13.44.26-2048x1429.png 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>You also see that there is no whitespace around the path on the left. You generally want to not have any whitespace to the top and bottom to allow better positioning later. To remove unneeded whitespace go to: <code>Object -&gt; Artboards -&gt; Fit to Artwork </code>bounds.</figcaption></figure></div>



<h3 class="wp-block-heading" id="exporting-copying-the-svg-code">Exporting / Copying the svg code</h3>



<p>To export the svg file: <code>File -&gt; Export -&gt; Export As...</code> then select <code>SVG</code> in the dropdown and the following window will appear.</p>



<div class="wp-block-image"><figure class="aligncenter size-full is-resized"><img decoding="async" loading="lazy" src="https://gutenslider.org/wp-content/uploads/2021/10/Bildschirmfoto-2021-11-17-um-13.48.22.png" alt="" class="wp-image-4180" width="471" height="404" srcset="https://gutenslider.org/wp-content/uploads/2021/10/Bildschirmfoto-2021-11-17-um-13.48.22.png 942w, https://gutenslider.org/wp-content/uploads/2021/10/Bildschirmfoto-2021-11-17-um-13.48.22-300x257.png 300w, https://gutenslider.org/wp-content/uploads/2021/10/Bildschirmfoto-2021-11-17-um-13.48.22-768x659.png 768w" sizes="(max-width: 471px) 100vw, 471px" /></figure></div>



<p>You can leave all the settings as they are by default. You will not need the file, but only the code later, so you can click on <code>Show Code</code> to see the svg code and copy it to your dashboard.</p>



<h2 class="wp-block-heading" id="write-a-wordpress-filter-to-add-your-custom-svg-to-gutenslider">Write a WordPress filter to add your custom SVG to Gutenslider</h2>



<p>Gutenslider provides a filter called <code>gutenslider_arrows</code> which you can use to change the array of arrows provided by Gutenslider. After integration, Gutenslider UI will automatically show the selection option in the Block Settings and you can choose your newly generated arrows.</p>



<p>You need to add the following php code to one of your theme&#8217;s .php files (if you are a beginner, you can safely add it to <code>functions.php</code> in your theme base directory.</p>



<pre class="wp-block-code" style="font-size:12px"><code>function my_custom_arrows( $arrows ) {
	$arrows&#91;] = array(
		'value' =&gt; 'my-custom-arrow',
		'label' =&gt; 'Custom Arrow',
		'prev'  =&gt; '&lt;your svg code for prev arrow here&gt;',
		'next'  =&gt; '&lt;your svg code for prev arrow here&gt;',
	);
	return $arrows;
}
add_filter( 'gutenslider_arrows', 'my_custom_arrows' );</code></pre>



<p>You see that it is straight forward. You create a filter function <code>my_custom_arrows</code> which changes the <code>$arrows</code> variable. The item you add is an array with the keys:</p>



<figure class="wp-block-table aligncenter is-style-regular"><table><tbody><tr><td class="has-text-align-center" data-align="center"><code><strong>value</strong></code></td><td>just an aribtrary id you can choose, it will be used in the backend logic when your block is saved</td></tr><tr><td class="has-text-align-center" data-align="center"><code><strong>label</strong></code></td><td>the label that will appear in the arrow selector in the Gutenslider Block Settings Dropdown</td></tr><tr><td class="has-text-align-center" data-align="center"><code><strong>prev</strong></code></td><td>the svg code for the previous arrow (see next step for example and formatting)</td></tr><tr><td class="has-text-align-center" data-align="center"><code><strong>next</strong></code></td><td>the svg code for the next arrow (see next step for example and formatting)</td></tr></tbody></table></figure>



<p class="has-luminous-vivid-amber-background-color has-background">Save the file and continue with pasting your svg code to the <code>next</code> and <code>prev</code> sections. For a seamless integration please also see the next step on how to format your svg.</p>



<h2 class="wp-block-heading" id="formating-your-svg">Formating your SVG</h2>



<p>There are two things you want to take care of, before pasting your code:</p>



<ol><li>The size of the svg</li><li>The color of the svg</li></ol>



<p>We will refer to the following example code which was the one copied from the AI svg above.</p>



<pre class="wp-block-code"><code>&lt;svg xmlns="http://www.w3.org/2000/svg" <strong>width="24" height="24"</strong> viewBox="0 0 817.95 1792.69"&gt;&lt;path <strong>class="arrow"</strong> d="M824.62,1753.28c1.08,29.3-20.31,71.77-54.87,58.43-8.6-3.07-15.57-9.79-22.11-16.2-17.82-17.78-35-36.19-52.85-54-52.11-53.06-101.38-108.8-149.57-165.41q-52.1-58.76-104.08-117.6c-34-41.44-66.12-84.34-100.83-125.17-90.39-106.67-178.1-215.53-267.54-322.94C61,995,50.16,978.94,39.42,962.81,16.11,935.27.25,899.57,9.27,863.14c3.83-19.31,14.6-36,28-50,17-19,30.74-40.6,47-60.2,52.5-61.73,104.52-124,163.16-180,27.46-31.23,51.6-65.26,80.83-95,53.29-55.65,93.31-108.85,145.17-163.65,28.59-33.76,56-68.51,86.15-101,33.23-36,67.46-70.85,102.18-105.36,26.32-26.27,49.48-56.14,78.37-79.61C786.78.25,820,66,812.63,105.94c-1.46,34.29-27.58,56.91-50.62,78.87-47.17,50.21-96.72,98-143.59,148.47C583.28,371.41,553.39,414,517,451c-33.61,39.94-66.52,80.57-102.37,118.58-36.24,37.18-67.74,78.45-102,117.29-15.83,18.27-34.42,33.78-51.62,50.68-44.25,48.85-89.82,96.77-129.91,149.17,155.09,184,302,375.11,462.79,554.21,47.38,51.42,93.38,104.06,140.31,155.91C773.38,1641.63,822.89,1690.12,824.62,1753.28Z" transform="translate(-6.7 -21.54)"/&gt;&lt;/svg&gt;</code></pre>



<p>There is a lot going on here but we marked the important parts.</p>



<p>To make sure the default size is correct, you want to make sure you have <code>width</code> and <code>height</code> properties in your svg and they are set to <code>24</code>, which is the default width and height of all our arrows. If your dimensions are not 1:1 you can adjust accordingly. The user can still change the size in the backend. But this is to make sure that arrows are not inserted too big at the beginning.</p>



<p>Second, to allow users to select the arrow color from the Block Settings, you will want to make sure that all paths that show the arrow lines have the <code>class="arrow"</code> property applied.</p>



<p>There is one more class you can use: <code>bg</code> if you add this class to a <code>path</code> you will be able to change the svg color with the <code>Arrow Background Color</code> Setting in the UI later. If you have no background path you can ignore this.</p>



<h2 class="wp-block-heading" id="finishing-up">Finishing Up</h2>



<p>See your work in action. </p>



<figure class="wp-block-video"><video controls src="https://gutenslider.org/wp-content/uploads/2021/10/gs-arrows.mp4"></video></figure>



<p class="has-black-color has-luminous-vivid-amber-background-color has-text-color has-background">If you have any questions and are a pro or expert user, do not hesitate to write us a mail to <a href="mailto:support@gutenslider.org">support@gutenslider.org</a>. We are happy to help</p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/adding-custom-arrows-to-your-wordpress-sliders/">Add Custom Arrows to your WordPress Sliders</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="https://gutenslider.org/wp-content/uploads/2021/10/gs-arrows.mp4" length="3862782" type="video/mp4" />

			</item>
		<item>
		<title>Full Quality Images with Gutenslider</title>
		<link>https://gutenslider.org/full-quality-images-with-gutenslider/</link>
		
		<dc:creator><![CDATA[eedee]]></dc:creator>
		<pubDate>Wed, 20 Oct 2021 12:14:08 +0000</pubDate>
				<category><![CDATA[Howto]]></category>
		<guid isPermaLink="false">https://gutenslider.org/?p=4099</guid>

					<description><![CDATA[<p>We are receiving many user requests, notifying us about the blurry image quality on full size sliders and how to fix it. This is not a Gutenslider issue but the reason is WordPress, that generates thumbnail images and serves too low quality images depending on the theme you use. Here, you learn how to fix &#8230;</p>
<p class="read-more"> <a class="ast-button" href="https://gutenslider.org/full-quality-images-with-gutenslider/"> <span class="screen-reader-text">Full Quality Images with Gutenslider</span> Read More »</a></p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/full-quality-images-with-gutenslider/">Full Quality Images with Gutenslider</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>We are receiving many user requests, notifying us about the blurry image quality on full size sliders and how to fix it. This is not a Gutenslider issue but the reason is WordPress, that generates thumbnail images and serves too low quality images depending on the theme you use. Here, you learn how to fix it.</p>



<h2 class="wp-block-heading">tl;dr</h2>



<ol><li>Download the Regenerate Thumbnails plugin and execute it.</li><li>Gutenslider will add 4 new image sizes with widths: 1600, 2200,2800, 3400, 4000</li><li>If it does not work add your own image sizes.</li></ol>



<figure class="wp-block-embed is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory"><div class="wp-block-embed__wrapper">
<blockquote class="wp-embedded-content" data-secret="4cFpb92xyl"><a href="https://de.wordpress.org/plugins/regenerate-thumbnails/">Regenerate Thumbnails</a></blockquote><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" title="&#8222;Regenerate Thumbnails&#8220; &#8212; Plugin Directory" src="https://de.wordpress.org/plugins/regenerate-thumbnails/embed/#?secret=4cFpb92xyl" data-secret="4cFpb92xyl" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
</div></figure>



<h2 class="wp-block-heading">Generating Thumbnails</h2>



<p>When you upload images to WordPress, many image sizes are generated automatically in order to serve only the quality needed for different screen sizes or use cases. These 4 image sizes are generated automatically:</p>



<ul><li>Thumbnail size (150 x 150 pixels)</li><li>Medium size (maximum 300 x 300 pixels)</li><li>Large size (maximum 1024 x 1024 pixels)</li><li>Full size (the original size of the uploaded image)</li></ul>



<p>WordPress does this, so you don’t have to keep resizing images manually and to ensure the best image size is selected for different locations on your website.</p>



<p>For example, the image size used in the header of a blog post will be different from the blog post’s thumbnail image.</p>



<p>You see that those image sizes are not suited for large screens as on all screens wider than 1024px the full size image will be served. And not only that, depending on the theme you use, the theme authors can have written code, that tell your WordPress</p>



<h2 class="wp-block-heading">Changing WordPress Default Image sizes</h2>



<p>In addition to the default image sizes, you can also upload your custom image sizes to fit your needs.</p>



<p>Here’s how:</p>



<ol><li>Go to your WordPress Admin Dashboard</li><li>Click on Settings – Media</li><li>In the Media Settings, adjust the default image settings to fit your preferences</li><li>Click Save Changes to confirm</li></ol>



<figure class="wp-block-image size-full"><img decoding="async" loading="lazy" width="886" height="803" src="https://gutenslider.org/wp-content/uploads/2021/10/wordpress-default-image-sizes.webp" alt="Wordpress default image sizes full quality slider" class="wp-image-4100" srcset="https://gutenslider.org/wp-content/uploads/2021/10/wordpress-default-image-sizes.webp 886w, https://gutenslider.org/wp-content/uploads/2021/10/wordpress-default-image-sizes-300x272.webp 300w, https://gutenslider.org/wp-content/uploads/2021/10/wordpress-default-image-sizes-768x696.webp 768w" sizes="(max-width: 886px) 100vw, 886px" /></figure>



<p>The other way to do it is by adding the Regenerate Thumbnails plugin. As Gutenslider already adds more image sizes to your page, it will most likely just work after running the plugin, if not, please contact us in the <a href="https://wordpress.org/support/plugin/gutenslider/">WordPress support forum</a>.</p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/full-quality-images-with-gutenslider/">Full Quality Images with Gutenslider</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>WordPress Slide Text next to Image</title>
		<link>https://gutenslider.org/wordpress-slide-text-next-to-image/</link>
		
		<dc:creator><![CDATA[eedee]]></dc:creator>
		<pubDate>Sun, 18 Jul 2021 12:31:05 +0000</pubDate>
				<category><![CDATA[Howto]]></category>
		<guid isPermaLink="false">https://gutenslider.org/?p=4057</guid>

					<description><![CDATA[<p>A user on the WordPress support forum asked if it was possible to place the text on the side next to the image. The answer is: yes it is. Gutenslider allows you to create complex layouts with all the Gutenberg blocks you like and want to use. So you can add the `columns` block e.g. &#8230;</p>
<p class="read-more"> <a class="ast-button" href="https://gutenslider.org/wordpress-slide-text-next-to-image/"> <span class="screen-reader-text">WordPress Slide Text next to Image</span> Read More »</a></p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/wordpress-slide-text-next-to-image/">WordPress Slide Text next to Image</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>A user on the <a href="https://wordpress.org/support/topic/text-on-side-next-to-image/">WordPress support forum asked</a> if it was possible to place the text on the side next to the image. The answer is: yes it is. </p>


<div id="gutenslider-lyawswmxw" class="wp-block-eedee-block-gutenslider gs-frontend content-change alignnone arrow-style-1 arrow-position-sides arrow-mb-none arrows-lg arrows-md arrows-sm dot-style-1 dots-lg dots-md dots-sm dot-position-bottom is-position-center-center mb-none lg-zoom-icon wrap-auto-height" data-parallax-direction="down" data-parallax-amount="1.3" data-lg-transition="lg-slide" data-hash="" ><div class="eedee-swiper-outer" style="--gutenslider-min-height: 37vh;--gutenslider-arrow-size: 30px;--gutenslider-dot-size: 25px;--gutenslider-arrow-color: #ffffff;--gutenslider-dot-color: #ffffff;--gutenslider-padding-y-mobile: 40px;--gutenslider-padding-x-mobile: 40px;--gutenslider-padding-y-tablet: 40px;--gutenslider-padding-x-tablet: 40px;--gutenslider-padding-y-desktop: 40px;--gutenslider-padding-x-desktop: 40px;--gutenslider-bg-image: url();--gutenslider-min-height-md: 50vh;--gutenslider-min-height-sm: 50vh;--gutenslider-padding-x: 40px;--gutenslider-padding-x-md: 40px;--gutenslider-padding-x-sm: 20px;--gutenslider-padding-y: 40px;--gutenslider-padding-y-md: 40px;--gutenslider-padding-y-sm: 20px;--gutenslider-arrow-size-md: 30px;--gutenslider-arrow-size-sm: 30px;--gutenslider-dot-size-md: 25px;--gutenslider-dot-size-sm: 25px;--gutenslider-arrow-bg-color: transparent;--gutenslider-arrow-hover-color: #eeeeee;--gutenslider-arrow-bg-hover-color: transparent;--gutenslider-arrow-x-offset: 10px;--gutenslider-arrow-x-offset-md: 10px;--gutenslider-arrow-x-offset-sm: 10px;--gutenslider-arrow-y-offset: 0px;--gutenslider-arrow-y-offset-md: 0px;--gutenslider-arrow-y-offset-sm: 0px;--gutenslider-arrow-x-spacing: 0px;--gutenslider-dot-y-offset: 10px;--gutenslider-dot-y-offset-md: 10px;--gutenslider-dot-y-offset-sm: 10px;--gutenslider-margin-x: 0px;--gutenslider-margin-x-md: 0px;--gutenslider-margin-x-sm: 0px;--gutenslider-margin-y: 0px;--gutenslider-margin-y-md: 0px;--gutenslider-margin-y-sm: 0px;--gutenslider-divider-top: 60px;--gutenslider-divider-bottom: 60px;--gutenslider-lightgallery-bg: #ffffff;--gutenslider-lightgallery-font: #000000;--gs-first-pos: 50% 50%;--gs-gap-vertical: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );--gs-gap-horizontal: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );"><div class="gutenslider-divider-top" style="color:#fff;"></div><div class="swiper" data-settings='{"autoplay":{"delay":3000,"pauseOnMouseEnter":true,"disableOnInteraction":false},"speed":700,"direction":"horizontal","autoHeight":"","loop":true,"centeredSlides":true,"spaceBetween":0,"slidesPerView":1,"slidesPerGroup":1,"effect":"slide","coverflowEffect":{"rotate":30,"slideShadows":false,"depth":100,"stretch":50,"modifier":1},"fadeEffect":{"crossFade":true},"zoom":"","navigation":{"nextEl":"#gutenslider-lyawswmxw .eedee-gutenslider-next","prevEl":"#gutenslider-lyawswmxw .eedee-gutenslider-prev"},"pagination":{"type":"bullets","clickable":true,"dynamicBullets":false,"el":"#gutenslider-lyawswmxw .eedee-gutenslider-pagination"},"pauseOnHover":"1","watchSlidesProgress":true,"watchSlidesVisibility":true,"settingsMd":{"autoHeight":"","slidesPerView":1,"slidesPerGroup":1,"spaceBetween":0,"loop":true},"settingsLg":{"autoHeight":"","slidesPerView":1,"slidesPerGroup":1,"spaceBetween":0,"loop":true},"hasLg":true,"hasLgCounter":true,"isFullScreen":false,"arrowsFollowMouse":false,"lgTitle":"none","lgCaption":"none","lgThumbnails":true,"lgZoomEnabled":false,"keyboard":{"keyboard":{"enabled":true,"onlyInViewport":true}},"hashNavigation":false,"dividers":false}'><div class="swiper-wrapper">
<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-none" style="--slide-min-width:80%;" data-hash=""><div class="eedee-background-div no-media-background"><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<div class="wp-block-columns is-layout-flex wp-container-7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large is-resized"><img decoding="async" loading="lazy" src="https://gutenslider.org/wp-content/uploads/2021/05/u9tal8wr3di-683x1024.jpg" alt="low-angle photography coconut trees during golden hour" class="wp-image-4023" width="152" height="228" srcset="https://gutenslider.org/wp-content/uploads/2021/05/u9tal8wr3di-683x1024.jpg 683w, https://gutenslider.org/wp-content/uploads/2021/05/u9tal8wr3di-200x300.jpg 200w, https://gutenslider.org/wp-content/uploads/2021/05/u9tal8wr3di-768x1152.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/u9tal8wr3di-1024x1536.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/u9tal8wr3di-1365x2048.jpg 1365w, https://gutenslider.org/wp-content/uploads/2021/05/u9tal8wr3di-scaled.jpg 1707w" sizes="(max-width: 152px) 100vw, 152px" /></figure>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow">
<h2 class="wp-block-heading">This headline</h2>



<p>Is positioned in a column block </p>
</div>
</div>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-none" style="--slide-min-width:80%;" data-hash=""><div class="eedee-background-div no-media-background"><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<div class="wp-block-columns is-layout-flex wp-container-10 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><img decoding="async" loading="lazy" width="731" height="1024" src="https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-731x1024.jpg" alt="sliced watermelon with lemon on shot glass" class="wp-image-4020" srcset="https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-731x1024.jpg 731w, https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-214x300.jpg 214w, https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-768x1075.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-1097x1536.jpg 1097w, https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-1463x2048.jpg 1463w, https://gutenslider.org/wp-content/uploads/2021/05/xon3v3ge7ee-scaled.jpg 1829w" sizes="(max-width: 731px) 100vw, 731px" /></figure>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow">
<h2 class="wp-block-heading">Watermelon</h2>



<p>This is the next slide with the same 50/50 column layout</p>
</div>
</div>

</div></div>
</div></div><button class="eedee-gutenslider-nav eedee-gutenslider-prev"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><circle class="bg" cx="13" cy="12" r="11" /><path fill="none" d="M0 0h24v24H0z"/><path class="arrow" d="M10.828 12l4.95 4.95-1.414 1.414L8 12l6.364-6.364 1.414 1.414z"/></svg></button><button class="eedee-gutenslider-nav eedee-gutenslider-next"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><circle class="bg" cx="11" cy="12" r="11" /><path fill="none" d="M0 0h24v24H0z"/><path class="arrow" d="M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z"/></svg></button><div class="eedee-gutenslider-pagination"></div><div class="gutenslider-divider-bottom " style="color:#fff;"></div></div></div>


<p>Gutenslider allows you to create complex layouts with all the Gutenberg blocks you like and want to use. So you can add the `columns` block e.g. to get the layout you want. See the example below</p>



<p></p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/wordpress-slide-text-next-to-image/">WordPress Slide Text next to Image</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Changing the slide order</title>
		<link>https://gutenslider.org/changing-the-slide-order/</link>
		
		<dc:creator><![CDATA[eedee]]></dc:creator>
		<pubDate>Wed, 26 May 2021 07:13:48 +0000</pubDate>
				<category><![CDATA[Howto]]></category>
		<guid isPermaLink="false">https://gutenslider.org/?p=3869</guid>

					<description><![CDATA[<p>With Gutenberg being quite young, the user interface is a frequent subject to change as well. We will not always go with all UI changes but in Gutenslider 5.0 we adapted the new InnerBlock navigation toolbar you can also see in the core Buttons block for example. See this video on how to navigate in &#8230;</p>
<p class="read-more"> <a class="ast-button" href="https://gutenslider.org/changing-the-slide-order/"> <span class="screen-reader-text">Changing the slide order</span> Read More »</a></p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/changing-the-slide-order/">Changing the slide order</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>With Gutenberg being quite young, the user interface is a frequent subject to change as well. We will not always go with all UI changes but in Gutenslider 5.0 we adapted the new InnerBlock navigation toolbar you can also see in the core <code>Buttons</code> block for example.</p>



<p>See this video on how to navigate in Gutenslider and Gutenslide blocks and how to change the order of the slides:</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="ast-oembed-container" style="height: 100%;"><div class="slimfast_yl"><div class="slimfast_wrap"><div class="slimfast_player" data-embed="rAB0uR8gqHs" id="player_rAB0uR8gqHs"><div class="play-button"></div></div></div></div></div>
</div></figure>



<p>As you see, you can also select the order of the media slides by selecting them in the order you want them to appear.</p>



<p>We will improve the process of changing the slide order in future versions of Gutenslider. We are currently considering two improvements:</p>



<p>1: to have a special <code>block navigation</code> toolbar item like in the latest version of the <code>navigation block</code>:</p>



<div class="wp-block-columns is-layout-flex wp-container-13 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large is-resized is-style-default"><img decoding="async" loading="lazy" src="https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.09.30.png" alt="block navigation menu change slide order" class="wp-image-3870" width="414" height="162" srcset="https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.09.30.png 784w, https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.09.30-300x117.png 300w, https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.09.30-768x300.png 768w" sizes="(max-width: 414px) 100vw, 414px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><img decoding="async" loading="lazy" width="1024" height="296" src="https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.09.42-1024x296.png" alt="" class="wp-image-3871" srcset="https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.09.42-1024x296.png 1024w, https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.09.42-300x87.png 300w, https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.09.42-768x222.png 768w, https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.09.42-1536x444.png 1536w, https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.09.42.png 1618w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
</div>
</div>



<p>2: To have a Panel in the block settings that lets you reorder slides. </p>



<div class="wp-block-image"><figure class="aligncenter size-large is-resized"><img decoding="async" loading="lazy" src="https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.40.19-504x1024.png" alt="" class="wp-image-3878" width="219" height="445" srcset="https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.40.19-504x1024.png 504w, https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.40.19-148x300.png 148w, https://gutenslider.org/wp-content/uploads/2021/05/Bildschirmfoto-2021-05-26-um-09.40.19.png 552w" sizes="(max-width: 219px) 100vw, 219px" /></figure></div>



<p>What do you think or like better? Until that please use the way outlined in the video above.</p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/changing-the-slide-order/">Changing the slide order</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Adding Background Overlays</title>
		<link>https://gutenslider.org/adding-background-overlays/</link>
		
		<dc:creator><![CDATA[eedee]]></dc:creator>
		<pubDate>Thu, 18 Feb 2021 19:02:26 +0000</pubDate>
				<category><![CDATA[Howto]]></category>
		<guid isPermaLink="false">https://gutenslider.org/adding-background-overlays/</guid>

					<description><![CDATA[<p>You have to go to the Block settings of the individual slides which you can either reach from the block outline from the top toolbar, or by changing Gutenslider to &#8220;edit&#8221; mode by clicking the pen icon. Then on the block settings of the slide you want to change you can pick from 5 options &#8230;</p>
<p class="read-more"> <a class="ast-button" href="https://gutenslider.org/adding-background-overlays/"> <span class="screen-reader-text">Adding Background Overlays</span> Read More »</a></p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/adding-background-overlays/">Adding Background Overlays</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div id="gutenslider-g1yp5lcz7" class="wp-block-eedee-block-gutenslider gs-frontend content-fixed alignnone arrow-style-1 arrow-position-sides arrow-mb-none arrows-lg arrows-md arrows-sm dot-style-1 dots-lg dots-md dots-sm dot-position-bottom is-position-center-center mb-none wrap-auto-height" style="--gutenslider-min-height: 50vh;--gutenslider-arrow-size: 30px;--gutenslider-dot-size: 25px;--gutenslider-arrow-color: #ffffff;--gutenslider-dot-color: #ffffff;--gutenslider-padding-y-mobile: 40px;--gutenslider-padding-x-mobile: 40px;--gutenslider-padding-y-tablet: 40px;--gutenslider-padding-x-tablet: 40px;--gutenslider-padding-y-desktop: 40px;--gutenslider-padding-x-desktop: 40px;--gutenslider-bg-image: url();--gutenslider-min-height-md: 50vh;--gutenslider-min-height-sm: 50vh;--gutenslider-padding-x: 40px;--gutenslider-padding-x-md: 40px;--gutenslider-padding-x-sm: 20px;--gutenslider-padding-y: 40px;--gutenslider-padding-y-md: 40px;--gutenslider-padding-y-sm: 20px;--gutenslider-arrow-size-md: 30px;--gutenslider-arrow-size-sm: 30px;--gutenslider-dot-size-md: 25px;--gutenslider-dot-size-sm: 25px;--gutenslider-arrow-bg-color: transparent;--gutenslider-arrow-hover-color: #eeeeee;--gutenslider-arrow-bg-hover-color: transparent;--gutenslider-arrow-x-offset: 10px;--gutenslider-arrow-x-offset-md: 10px;--gutenslider-arrow-x-offset-sm: 10px;--gutenslider-arrow-y-offset: 0px;--gutenslider-arrow-y-offset-md: 0px;--gutenslider-arrow-y-offset-sm: 0px;--gutenslider-arrow-x-spacing: 0px;--gutenslider-dot-y-offset: 10px;--gutenslider-dot-y-offset-md: 10px;--gutenslider-dot-y-offset-sm: 10px;--gutenslider-margin-x: 0px;--gutenslider-margin-x-md: 0px;--gutenslider-margin-x-sm: 0px;--gutenslider-margin-y: 0px;--gutenslider-margin-y-md: 0px;--gutenslider-margin-y-sm: 0px;--gutenslider-divider-top: 60px;--gutenslider-divider-bottom: 60px;--gutenslider-lightgallery-bg: #ffffff;--gutenslider-lightgallery-font: #000000;--gs-first-pos: 50% 50%;--gs-gap-vertical: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );--gs-gap-horizontal: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );" data-parallax-direction="down" data-parallax-amount="1.3" data-lg-transition="lg-slide" data-hash=""><div class="eedee-swiper-outer"><div class="gutenslider-divider-top" style="color:#fff;"></div><div class="swiper" data-settings='{"autoplay":false,"speed":700,"direction":"horizontal","autoHeight":"","loop":true,"centeredSlides":true,"spaceBetween":0,"slidesPerView":1,"slidesPerGroup":1,"effect":"slide","coverflowEffect":{"rotate":30,"slideShadows":false,"depth":100,"stretch":50,"modifier":1},"fadeEffect":{"crossFade":true},"zoom":"","navigation":{"nextEl":"#gutenslider-g1yp5lcz7 .eedee-gutenslider-next","prevEl":"#gutenslider-g1yp5lcz7 .eedee-gutenslider-prev"},"pagination":{"type":"bullets","clickable":true,"dynamicBullets":false,"el":"#gutenslider-g1yp5lcz7 .eedee-gutenslider-pagination"},"pauseOnHover":"1","watchSlidesProgress":true,"watchSlidesVisibility":true,"settingsMd":{"autoHeight":"","slidesPerView":1,"slidesPerGroup":1,"spaceBetween":0,"loop":true},"settingsLg":{"autoHeight":"","slidesPerView":1,"slidesPerGroup":1,"spaceBetween":0,"loop":true},"hasLg":false,"hasLgCounter":true,"isFullScreen":false,"arrowsFollowMouse":false,"lgTitle":"none","lgCaption":"none","lgThumbnails":true,"lgZoomEnabled":false,"keyboard":{"keyboard":{"enabled":true,"onlyInViewport":true}},"hashNavigation":false,"dividers":false}'><div class="swiper-wrapper">
<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:200;--ed-vh:300;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="683" height="1024" class="wp-image-3193" src="https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-683x1024.jpg" alt="woman doing ballet dancing" decoding="async" style="object-fit: cover; object-position: 50% 23%;"  data-title="Photo by Miguel Salgado" srcset="https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-683x1024.jpg 683w, https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-200x300.jpg 200w, https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-768x1152.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-1024x1536.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-1365x2048.jpg 1365w, https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-scaled.jpg 1707w" sizes="(max-width: 683px) 100vw, 683px" /><div class="eedee-background-div__overlay" style="opacity:0.5;background:linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-gradient" style="--slide-min-width:80%;--ed-vw:300;--ed-vh:200;" data-hash=""><div class="eedee-background-div no-media-background bg-image"><img loading="lazy" width="1024" height="683" class="wp-image-3192" src="https://gutenslider.org/wp-content/uploads/2021/05/i76lc1sjdoi-1024x683.jpg" alt="silhouette man with layered palm tree photograph" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Denys Argyriou" srcset="https://gutenslider.org/wp-content/uploads/2021/05/i76lc1sjdoi-1024x683.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/i76lc1sjdoi-300x200.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/i76lc1sjdoi-768x512.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/i76lc1sjdoi-1536x1024.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/i76lc1sjdoi-2048x1365.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:0.5;background:linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:200;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1024" height="684" class="wp-image-3191" src="https://gutenslider.org/wp-content/uploads/2021/05/ug9t2ufwxzu-1024x684.jpg" alt="black and white chevron textile" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-caption="black and white chevron textile" data-title="Photo by Indra Utama" srcset="https://gutenslider.org/wp-content/uploads/2021/05/ug9t2ufwxzu-1024x684.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/ug9t2ufwxzu-300x200.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/ug9t2ufwxzu-768x513.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/ug9t2ufwxzu-1536x1026.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/ug9t2ufwxzu-2048x1368.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:0.5;background:linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:220;--ed-vh:300;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="749" height="1024" class="wp-image-3189" src="https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-749x1024.jpg" alt="woman raising both arms with stripe light color" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-caption="woman raising both arms with stripe light color" data-title="Photo by . liane ." srcset="https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-749x1024.jpg 749w, https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-220x300.jpg 220w, https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-768x1050.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-1124x1536.jpg 1124w, https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-1498x2048.jpg 1498w, https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-scaled.jpg 1873w" sizes="(max-width: 749px) 100vw, 749px" /><div class="eedee-background-div__overlay" style="opacity:0.6;background:linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>


<p class="has-text-align-center has-white-color has-text-color has-huge-font-size"><strong>Gradient Overlays </strong></p>

</div></div><div class="wp-block-eedee-gutenslider__content co-1">
<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:200;--ed-vh:300;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="683" height="1024" class="wp-image-3193" src="https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-683x1024.jpg" alt="woman doing ballet dancing" decoding="async" style="object-fit: cover; object-position: 50% 23%;"  data-title="Photo by Miguel Salgado" srcset="https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-683x1024.jpg 683w, https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-200x300.jpg 200w, https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-768x1152.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-1024x1536.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-1365x2048.jpg 1365w, https://gutenslider.org/wp-content/uploads/2021/05/fqwk2mufkpg-scaled.jpg 1707w" sizes="(max-width: 683px) 100vw, 683px" /><div class="eedee-background-div__overlay" style="opacity:0.5;background:linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-gradient" style="--slide-min-width:80%;--ed-vw:300;--ed-vh:200;" data-hash=""><div class="eedee-background-div no-media-background bg-image"><img loading="lazy" width="1024" height="683" class="wp-image-3192" src="https://gutenslider.org/wp-content/uploads/2021/05/i76lc1sjdoi-1024x683.jpg" alt="silhouette man with layered palm tree photograph" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Denys Argyriou" srcset="https://gutenslider.org/wp-content/uploads/2021/05/i76lc1sjdoi-1024x683.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/i76lc1sjdoi-300x200.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/i76lc1sjdoi-768x512.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/i76lc1sjdoi-1536x1024.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/i76lc1sjdoi-2048x1365.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:0.5;background:linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:200;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1024" height="684" class="wp-image-3191" src="https://gutenslider.org/wp-content/uploads/2021/05/ug9t2ufwxzu-1024x684.jpg" alt="black and white chevron textile" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-caption="black and white chevron textile" data-title="Photo by Indra Utama" srcset="https://gutenslider.org/wp-content/uploads/2021/05/ug9t2ufwxzu-1024x684.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/ug9t2ufwxzu-300x200.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/ug9t2ufwxzu-768x513.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/ug9t2ufwxzu-1536x1026.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/ug9t2ufwxzu-2048x1368.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:0.5;background:linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:220;--ed-vh:300;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="749" height="1024" class="wp-image-3189" src="https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-749x1024.jpg" alt="woman raising both arms with stripe light color" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-caption="woman raising both arms with stripe light color" data-title="Photo by . liane ." srcset="https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-749x1024.jpg 749w, https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-220x300.jpg 220w, https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-768x1050.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-1124x1536.jpg 1124w, https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-1498x2048.jpg 1498w, https://gutenslider.org/wp-content/uploads/2021/05/thhor5ojyy4-scaled.jpg 1873w" sizes="(max-width: 749px) 100vw, 749px" /><div class="eedee-background-div__overlay" style="opacity:0.6;background:linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size"></p>

</div></div>


<p class="has-text-align-center has-white-color has-text-color has-huge-font-size"><strong>Gradient Overlays </strong></p>

</div><button class="eedee-gutenslider-nav eedee-gutenslider-prev"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><circle class="bg" cx="13" cy="12" r="11" /><path fill="none" d="M0 0h24v24H0z"/><path class="arrow" d="M10.828 12l4.95 4.95-1.414 1.414L8 12l6.364-6.364 1.414 1.414z"/></svg></button><button class="eedee-gutenslider-nav eedee-gutenslider-next"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><circle class="bg" cx="11" cy="12" r="11" /><path fill="none" d="M0 0h24v24H0z"/><path class="arrow" d="M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z"/></svg></button><div class="eedee-gutenslider-pagination"></div></div><div class="gutenslider-divider-bottom " style="color:#fff;"></div></div>


<p>You have to go to the Block settings of the individual slides which you can either reach from the block outline from the top toolbar, or by changing Gutenslider to &#8220;edit&#8221; mode by clicking the pen icon.</p>



<p>Then on the block settings of the slide you want to change you can pick from 5 options in the slide</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="ast-oembed-container" style="height: 100%;"><div class="slimfast_yl"><div class="slimfast_wrap"><div class="slimfast_player" data-embed="6UtXuvcnygU" id="player_6UtXuvcnygU"><div class="play-button"></div></div></div></div></div>
</div></figure>
<p>The post <a rel="nofollow" href="https://gutenslider.org/adding-background-overlays/">Adding Background Overlays</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Adding Text only Slides</title>
		<link>https://gutenslider.org/adding-text-only-slides/</link>
		
		<dc:creator><![CDATA[eedee]]></dc:creator>
		<pubDate>Sun, 01 Nov 2020 12:52:47 +0000</pubDate>
				<category><![CDATA[Howto]]></category>
		<guid isPermaLink="false">https://gutenslider.org/adding-text-only-slides/</guid>

					<description><![CDATA[<p>In this video we show you how to add slides without background images or background videos (pro). You can just set the background of any slide you want to transparent as shown in the video. That easily lets you create all text only slides very quickly. Live example of text only slides with no background &#8230;</p>
<p class="read-more"> <a class="ast-button" href="https://gutenslider.org/adding-text-only-slides/"> <span class="screen-reader-text">Adding Text only Slides</span> Read More »</a></p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/adding-text-only-slides/">Adding Text only Slides</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>In this video we show you how to add slides without background images or background videos (<a href="https://gutenslider.org/gutenslider-pro-pricing/">pro</a>). You can just set the background of any slide you want to transparent as shown in the video. That easily lets you create all text only slides very quickly.</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="ast-oembed-container" style="height: 100%;"><div class="slimfast_yl"><div class="slimfast_wrap"><div class="slimfast_player" data-embed="V8K4Tto-U1g" id="player_V8K4Tto-U1g"><div class="play-button"></div></div></div></div></div>
</div></figure>



<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">Live example of text only slides with no background media</h2>


<div id="gutenslider-m8qyvz3o0" class="wp-block-eedee-block-gutenslider gs-frontend content-change alignnone arrow-style-1 arrow-position-sides arrow-mb-none arrows-lg arrows-md arrows-sm dot-style-1 dots-lg dots-md dots-sm dot-position-bottom is-position-center-center mb-none wrap-auto-height" data-parallax-direction="down" data-parallax-amount="1.3" data-lg-transition="lg-slide" data-hash="" ><div class="eedee-swiper-outer" style="--gutenslider-min-height: 50vh;--gutenslider-arrow-size: 30px;--gutenslider-dot-size: 25px;--gutenslider-arrow-color: #ffffff;--gutenslider-dot-color: #ffffff;--gutenslider-padding-y-mobile: 40px;--gutenslider-padding-x-mobile: 40px;--gutenslider-padding-y-tablet: 40px;--gutenslider-padding-x-tablet: 40px;--gutenslider-padding-y-desktop: 40px;--gutenslider-padding-x-desktop: 40px;--gutenslider-bg-image: url();--gutenslider-min-height-md: 50vh;--gutenslider-min-height-sm: 50vh;--gutenslider-padding-x: 40px;--gutenslider-padding-x-md: 40px;--gutenslider-padding-x-sm: 20px;--gutenslider-padding-y: 40px;--gutenslider-padding-y-md: 40px;--gutenslider-padding-y-sm: 20px;--gutenslider-arrow-size-md: 30px;--gutenslider-arrow-size-sm: 30px;--gutenslider-dot-size-md: 25px;--gutenslider-dot-size-sm: 25px;--gutenslider-arrow-bg-color: transparent;--gutenslider-arrow-hover-color: #eeeeee;--gutenslider-arrow-bg-hover-color: transparent;--gutenslider-arrow-x-offset: 10px;--gutenslider-arrow-x-offset-md: 10px;--gutenslider-arrow-x-offset-sm: 10px;--gutenslider-arrow-y-offset: 0px;--gutenslider-arrow-y-offset-md: 0px;--gutenslider-arrow-y-offset-sm: 0px;--gutenslider-arrow-x-spacing: 0px;--gutenslider-dot-y-offset: 10px;--gutenslider-dot-y-offset-md: 10px;--gutenslider-dot-y-offset-sm: 10px;--gutenslider-margin-x: 0px;--gutenslider-margin-x-md: 0px;--gutenslider-margin-x-sm: 0px;--gutenslider-margin-y: 0px;--gutenslider-margin-y-md: 0px;--gutenslider-margin-y-sm: 0px;--gutenslider-divider-top: 60px;--gutenslider-divider-bottom: 60px;--gutenslider-lightgallery-bg: #ffffff;--gutenslider-lightgallery-font: #000000;--gs-first-pos: 50% 50%;--gs-gap-vertical: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );--gs-gap-horizontal: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );"><div class="gutenslider-divider-top" style="color:#fff;"></div><div class="swiper" data-settings='{"autoplay":{"delay":3000,"pauseOnMouseEnter":true,"disableOnInteraction":false},"speed":700,"direction":"horizontal","autoHeight":"","loop":true,"centeredSlides":true,"spaceBetween":0,"slidesPerView":1,"slidesPerGroup":1,"effect":"slide","coverflowEffect":{"rotate":30,"slideShadows":false,"depth":100,"stretch":50,"modifier":1},"fadeEffect":{"crossFade":true},"zoom":"","navigation":{"nextEl":"#gutenslider-m8qyvz3o0 .eedee-gutenslider-next","prevEl":"#gutenslider-m8qyvz3o0 .eedee-gutenslider-prev"},"pagination":{"type":"bullets","clickable":true,"dynamicBullets":false,"el":"#gutenslider-m8qyvz3o0 .eedee-gutenslider-pagination"},"pauseOnHover":"1","watchSlidesProgress":true,"watchSlidesVisibility":true,"settingsMd":{"autoHeight":"","slidesPerView":1,"slidesPerGroup":1,"spaceBetween":0,"loop":true},"settingsLg":{"autoHeight":"","slidesPerView":1,"slidesPerGroup":1,"spaceBetween":0,"loop":true},"hasLg":false,"hasLgCounter":true,"isFullScreen":false,"arrowsFollowMouse":false,"lgTitle":"none","lgCaption":"none","lgThumbnails":true,"lgZoomEnabled":false,"keyboard":{"keyboard":{"enabled":true,"onlyInViewport":true}},"hashNavigation":false,"dividers":false}'><div class="swiper-wrapper">
<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-none" style="--slide-min-width:80%;" data-hash=""><div class="eedee-background-div no-media-background"><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="has-text-align-center gutenslider-content-initial has-larger-font-size">Slide 1</p>



<p class="has-text-align-center">with a heading and a paragraph</p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-none" style="--slide-min-width:80%;" data-hash=""><div class="eedee-background-div no-media-background"><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<div class="wp-block-columns is-layout-flex wp-container-16 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h2 class="has-text-align-center wp-block-heading">Left<br>Column</h2>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h2 class="has-text-align-center wp-block-heading">Right<br>Column</h2>
</div>
</div>

</div></div>
</div></div><button class="eedee-gutenslider-nav eedee-gutenslider-prev"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><circle class="bg" cx="13" cy="12" r="11" /><path fill="none" d="M0 0h24v24H0z"/><path class="arrow" d="M10.828 12l4.95 4.95-1.414 1.414L8 12l6.364-6.364 1.414 1.414z"/></svg></button><button class="eedee-gutenslider-nav eedee-gutenslider-next"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><circle class="bg" cx="11" cy="12" r="11" /><path fill="none" d="M0 0h24v24H0z"/><path class="arrow" d="M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z"/></svg></button><div class="eedee-gutenslider-pagination"></div><div class="gutenslider-divider-bottom " style="color:#fff;"></div></div></div><p>The post <a rel="nofollow" href="https://gutenslider.org/adding-text-only-slides/">Adding Text only Slides</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Automatic Photo Captions</title>
		<link>https://gutenslider.org/automatic-photo-captions/</link>
		
		<dc:creator><![CDATA[eedee]]></dc:creator>
		<pubDate>Tue, 06 Oct 2020 15:32:52 +0000</pubDate>
				<category><![CDATA[Gutenslider Update]]></category>
		<category><![CDATA[Howto]]></category>
		<guid isPermaLink="false">https://gutenslider.org/automatic-photo-captions/</guid>

					<description><![CDATA[<p>In our support forum at WordPress, a feature request from one of our users reached us 3 days ago. The user asks if it was possible to add automatic captions to the slides in Gutenslider. Every Media Upload can have a Title, a Caption and a Description in WordPress, so why not use these? We &#8230;</p>
<p class="read-more"> <a class="ast-button" href="https://gutenslider.org/automatic-photo-captions/"> <span class="screen-reader-text">Automatic Photo Captions</span> Read More »</a></p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/automatic-photo-captions/">Automatic Photo Captions</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>In our support forum at WordPress, a <a href="https://wordpress.org/support/topic/captions-why-not-use-the-built-in-media-capability/">feature request</a> from one of our users reached us 3 days ago. The user asks if it was possible to add automatic captions to the slides in Gutenslider. Every Media Upload can have a <code>Title</code>, a <code>Caption</code> and a <code>Description</code> in WordPress, so why not use these?</p>



<p>We liked the idea of using existing fields for Gutenslider, which is especially useful for those of us, captioning each photos in their library, for example artists, photographs and other pro WordPress users. So look what we did in the latest Gutenslider release.</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="ast-oembed-container" style="height: 100%;"><div class="slimfast_yl"><div class="slimfast_wrap"><div class="slimfast_player" data-embed="bBm0JFL4Au4" id="player_bBm0JFL4Au4"><div class="play-button"></div></div></div></div></div>
</div></figure>



<h2 class="wp-block-heading">Gutenslider Free</h2>



<ol>
<li>Make sure your Media has captions ( titles, descriptions if you want to use them too).</li>



<li>Make sure the slider content mode is set to <code>Changing Content</code></li>



<li>Click the <code>Edit Content</code> button in the block toolbar</li>



<li>For each individual slide, select the placement and the format of the automatic caption</li>
</ol>



<h2 class="wp-block-heading">Gutenslider Pro</h2>



<p>In Gutenslider Pro and Expert you have the option to bulk edit slides. Especially the content placement and the captions can be edited by changing settings on the parent slider block instead of having to change each individual slide block.</p>



<ol>
<li>Make sure your Media has captions ( titles, descriptions if you want to use them too.</li>



<li>Select the Gutenslider block</li>



<li>Set the Content Alignment to where you like it</li>



<li>In the block settings in the <code>Advanced</code> section. Find the <code>Automatic Captions</code> selector and set it to your desired format</li>
</ol>



<h2 class="wp-block-heading">Unsplash Automatic Captions</h2>



<p>As Gutenslider works great with unsplash, and they encourage you to add attributions to the images you get from there, and we at Gutenslider love attributing free content creators, <strong>automatic attribution works too now</strong>.</p>


<div id="gutenslider-ho58c8wx6" class="wp-block-eedee-block-gutenslider gs-frontend content-change alignnone arrow-style-1 arrow-position-top-left arrow-mb-none arrows-lg arrows-md arrows-sm dot-style-1 dots-lg dots-md dots-sm dot-position-bottom is-position-bottom-left mb-none wrap-auto-height" data-parallax-direction="down" data-parallax-amount="1.3" data-lg-transition="lg-slide" data-hash="" ><div class="eedee-swiper-outer" style="--gutenslider-min-height: 50vh;--gutenslider-arrow-size: 30px;--gutenslider-dot-size: 25px;--gutenslider-arrow-color: #4138D4;--gutenslider-dot-color: #ffffff;--gutenslider-padding-y-mobile: 40px;--gutenslider-padding-x-mobile: 40px;--gutenslider-padding-y-tablet: 40px;--gutenslider-padding-x-tablet: 40px;--gutenslider-padding-y-desktop: 40px;--gutenslider-padding-x-desktop: 40px;--gutenslider-bg-image: url();--gutenslider-min-height-md: 50vh;--gutenslider-min-height-sm: 50vh;--gutenslider-padding-x: 40px;--gutenslider-padding-x-md: 40px;--gutenslider-padding-x-sm: 20px;--gutenslider-padding-y: 40px;--gutenslider-padding-y-md: 40px;--gutenslider-padding-y-sm: 20px;--gutenslider-arrow-size-md: 30px;--gutenslider-arrow-size-sm: 30px;--gutenslider-dot-size-md: 25px;--gutenslider-dot-size-sm: 25px;--gutenslider-arrow-bg-color: #ffd600;--gutenslider-arrow-hover-color: #ffd600;--gutenslider-arrow-bg-hover-color: transparent;--gutenslider-arrow-x-offset: 10px;--gutenslider-arrow-x-offset-md: 10px;--gutenslider-arrow-x-offset-sm: 10px;--gutenslider-arrow-y-offset: 0px;--gutenslider-arrow-y-offset-md: 0px;--gutenslider-arrow-y-offset-sm: 0px;--gutenslider-arrow-x-spacing: 9px;--gutenslider-dot-y-offset: 10px;--gutenslider-dot-y-offset-md: 10px;--gutenslider-dot-y-offset-sm: 10px;--gutenslider-margin-x: 0px;--gutenslider-margin-x-md: 0px;--gutenslider-margin-x-sm: 0px;--gutenslider-margin-y: 0px;--gutenslider-margin-y-md: 0px;--gutenslider-margin-y-sm: 0px;--gutenslider-divider-top: 60px;--gutenslider-divider-bottom: 60px;--gutenslider-lightgallery-bg: #ffffff;--gutenslider-lightgallery-font: #000000;--gs-first-pos: 50% 50%;--gs-gap-vertical: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );--gs-gap-horizontal: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );"><div class="gutenslider-divider-top" style="color:#fff;"></div><div class="swiper" data-settings='{"autoplay":{"delay":3000,"pauseOnMouseEnter":true,"disableOnInteraction":false},"speed":700,"direction":"horizontal","autoHeight":"","loop":true,"centeredSlides":true,"spaceBetween":0,"slidesPerView":1,"slidesPerGroup":1,"effect":"slide","coverflowEffect":{"rotate":30,"slideShadows":false,"depth":100,"stretch":50,"modifier":1},"fadeEffect":{"crossFade":true},"zoom":"","navigation":{"nextEl":"#gutenslider-ho58c8wx6 .eedee-gutenslider-next","prevEl":"#gutenslider-ho58c8wx6 .eedee-gutenslider-prev"},"pagination":{"type":"bullets","clickable":true,"dynamicBullets":false,"el":"#gutenslider-ho58c8wx6 .eedee-gutenslider-pagination"},"pauseOnHover":"1","watchSlidesProgress":true,"watchSlidesVisibility":true,"settingsMd":{"autoHeight":"","slidesPerView":1,"slidesPerGroup":1,"spaceBetween":0,"loop":true},"settingsLg":{"autoHeight":"","slidesPerView":1,"slidesPerGroup":1,"spaceBetween":0,"loop":true},"hasLg":false,"hasLgCounter":true,"isFullScreen":false,"arrowsFollowMouse":false,"lgTitle":"none","lgCaption":"none","lgThumbnails":true,"lgZoomEnabled":false,"keyboard":{"keyboard":{"enabled":true,"onlyInViewport":true}},"hashNavigation":false,"dividers":false}'><div class="swiper-wrapper">
<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:200;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1024" height="683" class="wp-image-3640" src="https://gutenslider.org/wp-content/uploads/2021/05/bbqxz7uyx0w-1024x683.jpg" alt="woman in white long sleeve shirt sitting on white couch" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Ave Calvar" srcset="https://gutenslider.org/wp-content/uploads/2021/05/bbqxz7uyx0w-1024x683.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/bbqxz7uyx0w-300x200.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/bbqxz7uyx0w-768x512.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/bbqxz7uyx0w-1536x1024.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/bbqxz7uyx0w-2048x1365.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="eedee-gutenslider-autocaption">undefined &#8211;  &#8211; undefined</p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:179;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1024" height="610" class="wp-image-3549" src="https://gutenslider.org/wp-content/uploads/2021/05/01_igfr7hd4-1024x610.jpg" alt="bird&#039;s eye view photograph of green mountains" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Qingbao Meng" srcset="https://gutenslider.org/wp-content/uploads/2021/05/01_igfr7hd4-1024x610.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/01_igfr7hd4-300x179.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/01_igfr7hd4-768x457.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/01_igfr7hd4-1536x914.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/01_igfr7hd4-2048x1219.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="eedee-gutenslider-autocaption">undefined &#8211;  &#8211; undefined</p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:169;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1024" height="576" class="wp-image-3548" src="https://gutenslider.org/wp-content/uploads/2021/05/mawu2pojwfu-1024x576.jpg" alt="bird&#039;s eye view photography of trees and body of water" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Andreas Gücklhorn" srcset="https://gutenslider.org/wp-content/uploads/2021/05/mawu2pojwfu-1024x576.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/mawu2pojwfu-300x169.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/mawu2pojwfu-768x432.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/mawu2pojwfu-1536x864.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/mawu2pojwfu-2048x1152.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="eedee-gutenslider-autocaption">undefined &#8211;  &#8211; undefined</p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:200;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1024" height="682" class="wp-image-3547" src="https://gutenslider.org/wp-content/uploads/2021/05/jfcviyfycus-1024x682.jpg" alt="forest trees" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Lukasz Szmigiel" srcset="https://gutenslider.org/wp-content/uploads/2021/05/jfcviyfycus-1024x682.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/jfcviyfycus-300x200.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/jfcviyfycus-768x511.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/jfcviyfycus-1536x1023.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/jfcviyfycus-2048x1364.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="eedee-gutenslider-autocaption">undefined &#8211;  &#8211; undefined</p>

</div></div>

<div class="swiper-slide wp-block-eedee-block-gutenslide is-position-center-center ed-bg-image" style="--ed-vw:300;--ed-vh:199;" data-hash=""><div class="eedee-background-div bg-image"><img loading="lazy" width="1024" height="678" class="wp-image-3546" src="https://gutenslider.org/wp-content/uploads/2021/05/f0ylss50bs-1024x678.jpg" alt="green trees on forest during daytime" decoding="async" style="object-fit: cover; object-position: 50% 50%;"  data-title="Photo by Kunal Shinde" srcset="https://gutenslider.org/wp-content/uploads/2021/05/f0ylss50bs-1024x678.jpg 1024w, https://gutenslider.org/wp-content/uploads/2021/05/f0ylss50bs-300x199.jpg 300w, https://gutenslider.org/wp-content/uploads/2021/05/f0ylss50bs-768x509.jpg 768w, https://gutenslider.org/wp-content/uploads/2021/05/f0ylss50bs-1536x1017.jpg 1536w, https://gutenslider.org/wp-content/uploads/2021/05/f0ylss50bs-2048x1356.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><div class="eedee-background-div__overlay" style="opacity:1;"></div></div><div class="slide-content">

<p class="eedee-gutenslider-autocaption">undefined &#8211;  &#8211; undefined</p>

</div></div>
</div></div><button class="eedee-gutenslider-nav eedee-gutenslider-prev"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><circle class="bg" cx="13" cy="12" r="11" /><path fill="none" d="M0 0h24v24H0z"/><path class="arrow" d="M10.828 12l4.95 4.95-1.414 1.414L8 12l6.364-6.364 1.414 1.414z"/></svg></button><button class="eedee-gutenslider-nav eedee-gutenslider-next"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><circle class="bg" cx="11" cy="12" r="11" /><path fill="none" d="M0 0h24v24H0z"/><path class="arrow" d="M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z"/></svg></button><div class="eedee-gutenslider-pagination"></div><div class="gutenslider-divider-bottom " style="color:#fff;"></div></div></div>


<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="ast-oembed-container" style="height: 100%;"><div class="slimfast_yl"><div class="slimfast_wrap"><div class="slimfast_player" data-embed="COLBRRjZkH0" id="player_COLBRRjZkH0"><div class="play-button"></div></div></div></div></div>
</div></figure>



<p class="has-small-font-size">The Blog Photo is by <a href="https://unsplash.com/@nate_dumlao?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Nathan Dumlao</a> on <a href="https://unsplash.com/s/photos/machine?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a></p>
<p>The post <a rel="nofollow" href="https://gutenslider.org/automatic-photo-captions/">Automatic Photo Captions</a> appeared first on <a rel="nofollow" href="https://gutenslider.org">Gutenslider</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
