{"id":7572,"date":"2024-08-20T18:25:31","date_gmt":"2024-08-20T18:25:31","guid":{"rendered":"https:\/\/www.leadshook.com\/help\/?p=7572"},"modified":"2024-08-21T16:20:43","modified_gmt":"2024-08-21T16:20:43","slug":"how-to-create-multiple-sliders-in-a-single-node","status":"publish","type":"post","link":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/","title":{"rendered":"How to create Multiple Sliders in a single Node"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction:<\/h2>\n\n\n\n<p>This guide will show you how to create multiple sliders in a single node. Currently Leadshook is only capable of having one slider in a single node. You can use the Custom code below to have multiple sliders.<\/p>\n\n\n\n<p class=\"has-luminous-vivid-amber-background-color has-background\"><strong>Note:<\/strong> You will need a developer if you wish to alter the code we provide for this guide<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step-by-Step guide:<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><\/li>\n<\/ul>\n\n\n\n<p><strong>Step 1:<\/strong> Create a Custom Page Node or any regular node that has a text editor.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>When using the text editor method, you will need to click &#8220;Source&#8221;<\/li>\n<\/ul>\n\n\n\n<p><strong>Step 2:<\/strong> Create 3 Number type Custom Fields<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can refer here on how to create custom fields: <strong><a href=\"https:\/\/www.leadshook.com\/help\/how-to-add-a-custom-field\/\" target=\"_blank\" rel=\"noreferrer noopener\">Custom Field Guide<\/a><\/strong><\/li>\n<\/ul>\n\n\n\n<p><strong>Step 3:<\/strong> Paste the code provided below on your Custom page node or the text editor.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>This code will create 3 sliders and assign to their respective custom fields<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;style&gt;\n\n.slider-container {\n  width: 80%;\n  margin: 20px auto;\n  padding: 10px;\n  border-radius: 10px;\n  background: #f5f5f5;\n  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);\n}\n\n.range-slider {\n  width: 100%;\n}\n\nh3 {\n  text-align: center;\n  font-family: Arial, sans-serif;\n  color: #333;\n}\n\n  .button {\n  display: inline-block;\n  padding: 12px 24px;\n  text-align: center;\n  text-decoration: none;\n  color: #fff;\n  background-color: #007BFF;\n  border: none;\n  border-radius: 4px;\n  cursor: pointer;\n  transition: background-color 0.3s ease;\n}\n\n.button:hover {\n  background-color: #0056b3;\n}\n  \n&lt;\/style&gt;\n\n\n&lt;!-- Include jQuery and Rangeslider.js libraries --&gt;\n&lt;script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.5.1\/jquery.min.js\"&gt;&lt;\/script&gt;\n&lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/rangeslider.js\/2.3.3\/rangeslider.min.js\"&gt;&lt;\/script&gt;\n&lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/rangeslider.js\/2.3.3\/rangeslider.min.css\"&gt;\n\n&lt;!-- Slider 1 --&gt;\n&lt;div class=\"s-wrap slider-container\"&gt;\n  &lt;input type=\"range\" min=\"0\" max=\"100\" value=\"10\" class=\"range-slider\" id=\"slider1\"&gt;\n  &lt;input type=\"hidden\" id=\"hiddenInput1\" name=\"CUSTOM_FIELD_1\"&gt;\n  &lt;h3&gt;Value: &lt;span class=\"range-value\"&gt;&lt;\/span&gt;&lt;\/h3&gt;\n&lt;\/div&gt;\n\n&lt;!-- Slider 2 --&gt;\n&lt;div class=\"s-wrap slider-container\"&gt;\n  &lt;input type=\"range\" min=\"0\" max=\"100\" value=\"20\" class=\"range-slider\" id=\"slider2\"&gt;\n  &lt;input type=\"hidden\" id=\"hiddenInput2\" name=\"CUSTOM_FIELD_2\"&gt;\n  &lt;h3&gt;Value: &lt;span class=\"range-value\"&gt;&lt;\/span&gt;&lt;\/h3&gt;\n&lt;\/div&gt;\n\n&lt;!-- Slider 3 --&gt;\n&lt;div class=\"s-wrap slider-container\"&gt;\n  &lt;input type=\"range\" min=\"0\" max=\"100\" value=\"40\" class=\"range-slider\" id=\"slider3\"&gt;\n  &lt;input type=\"hidden\" id=\"hiddenInput3\" name=\"CUSTOM_FIELD_3\"&gt;\n  &lt;h3&gt;Value: &lt;span class=\"range-value\"&gt;&lt;\/span&gt;&lt;\/h3&gt;\n&lt;\/div&gt;\n\n&lt;center&gt; &lt;button class=\"button\" type=\"submit\"&gt;Forward&lt;\/button&gt; &lt;\/center&gt;\n\n\n&lt;script&gt;\n$(document).ready(function() {\n  $('input&#91;type=\"range\"]').rangeslider({\n    polyfill: false,\n    onInit: function() {\n      this.output = $(this.$range).closest(\".s-wrap\").find(\".range-value\").show();\n      this.hiddenInput = $(this.$range).next('input&#91;type=\"hidden\"]');\n      this.update();\n    },\n    onSlide: function(position, value) {\n      this.output.text(value);\n      this.hiddenInput.val(value);  \/\/ Update the hidden input's value\n    }\n  });\n});\n&lt;\/script&gt; <\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Editing the Code<\/h2>\n\n\n\n<p><strong>Step 4<\/strong>: Go to your Code and change the values for name on each of the sliders to correspond to the three number custom fields you created from Step 2.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Example: name=&#8221;my_custom_field&#8221;<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"905\" height=\"672\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2.png\" alt=\"\" class=\"wp-image-7577\" srcset=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2.png 905w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2-300x223.png 300w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2-768x570.png 768w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2-60x45.png 60w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2-150x111.png 150w\" sizes=\"(max-width: 905px) 100vw, 905px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Step 5:<\/strong> Save the node and publish your Decision Tree and test.<\/p>\n\n\n\n<p class=\"has-luminous-vivid-amber-background-color has-background\"><strong>Note:<\/strong> In case if you want to remove a slider, please refer to the image below and delete a block of code that corresponds to a single slider. An example below is deleting the middle slider which is slider 2.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1002\" height=\"502\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image.png\" alt=\"\" class=\"wp-image-7581\" srcset=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image.png 1002w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image-300x150.png 300w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image-768x385.png 768w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image-60x30.png 60w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image-150x75.png 150w\" sizes=\"(max-width: 1002px) 100vw, 1002px\" \/><\/figure>\n\n\n\n<p class=\"has-luminous-vivid-amber-background-color has-background\"><strong>Note:<\/strong> In case if you want to Add a slider, please refer to the image below and delete a block of code that corresponds to a single slider. <br>1. You need to clone a silder block.<br>2. Increment the ID value &#8220;hiddenInput2&#8221; and &#8220;slider2&#8221; <br>3. You will increment for every slider code block being added. <br>Example: id=&#8221;hiddenInput3&#8243; and id=&#8221;slider2&#8243;<br>4. Lastly assign a custom field to the name  value.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"551\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image-2-1024x551.png\" alt=\"\" class=\"wp-image-7586\" srcset=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image-2-1024x551.png 1024w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image-2-300x161.png 300w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image-2-768x413.png 768w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image-2-1536x826.png 1536w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image-2-60x32.png 60w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image-2-150x81.png 150w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/image-2.png 1774w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction: This guide will show you how to create multiple sliders in a single node. Currently Leadshook is only capable of having one slider in a single node. You can use the Custom code below to have multiple sliders. Note: You will need a developer if you wish to alter the code we provide for [&hellip;]<\/p>\n","protected":false},"author":18,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[548,27,12],"tags":[1073,512,1072,1076,1074,1075],"class_list":["post-7572","post","type-post","status-publish","format-standard","hentry","category-css-hacks","category-decision-tree","category-leadshook","tag-creating-multiple-sliders","tag-css","tag-editing-css","tag-javascript-for-sliders","tag-multiple-sliders","tag-sliders"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to create Multiple Sliders in a single Node - LeadsHook Knowledge Base<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create Multiple Sliders in a single Node - LeadsHook Knowledge Base\" \/>\n<meta property=\"og:description\" content=\"Introduction: This guide will show you how to create multiple sliders in a single node. Currently Leadshook is only capable of having one slider in a single node. You can use the Custom code below to have multiple sliders. Note: You will need a developer if you wish to alter the code we provide for [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/\" \/>\n<meta property=\"og:site_name\" content=\"LeadsHook Knowledge Base\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/leadshook\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-08-20T18:25:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-21T16:20:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2.png\" \/>\n<meta name=\"author\" content=\"Sheetal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@leadshook\" \/>\n<meta name=\"twitter:site\" content=\"@leadshook\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sheetal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/\"},\"author\":{\"name\":\"Sheetal\",\"@id\":\"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/5139261061a0c92dc7aa58dcd033094c\"},\"headline\":\"How to create Multiple Sliders in a single Node\",\"datePublished\":\"2024-08-20T18:25:31+00:00\",\"dateModified\":\"2024-08-21T16:20:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/\"},\"wordCount\":294,\"publisher\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2.png\",\"keywords\":[\"creating multiple sliders\",\"CSS\",\"editing css\",\"javascript for sliders\",\"multiple sliders\",\"sliders\"],\"articleSection\":[\"CSS Hacks\",\"Decision Tree\",\"LeadsHook\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/\",\"url\":\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/\",\"name\":\"How to create Multiple Sliders in a single Node - LeadsHook Knowledge Base\",\"isPartOf\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2.png\",\"datePublished\":\"2024-08-20T18:25:31+00:00\",\"dateModified\":\"2024-08-21T16:20:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#primaryimage\",\"url\":\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2.png\",\"contentUrl\":\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2.png\",\"width\":905,\"height\":672},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.leadshook.com\/help\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create Multiple Sliders in a single Node\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.leadshook.com\/help\/#website\",\"url\":\"https:\/\/www.leadshook.com\/help\/\",\"name\":\"LeadsHook Knowledge Base\",\"description\":\"LeadsHook Training &amp; Technical Help\",\"publisher\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.leadshook.com\/help\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.leadshook.com\/help\/#organization\",\"name\":\"LeadsHook\",\"url\":\"https:\/\/www.leadshook.com\/help\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.leadshook.com\/help\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2018\/12\/leadshook-logo.png\",\"contentUrl\":\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2018\/12\/leadshook-logo.png\",\"width\":350,\"height\":83,\"caption\":\"LeadsHook\"},\"image\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/leadshook\/\",\"https:\/\/x.com\/leadshook\",\"https:\/\/www.linkedin.com\/showcase\/leadshook\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/5139261061a0c92dc7aa58dcd033094c\",\"name\":\"Sheetal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/b0b84df264435d13d938835e002bc75bb86f34919c86bf0ab1f2cbfb7dc02e45?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b0b84df264435d13d938835e002bc75bb86f34919c86bf0ab1f2cbfb7dc02e45?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b0b84df264435d13d938835e002bc75bb86f34919c86bf0ab1f2cbfb7dc02e45?s=96&d=mm&r=g\",\"caption\":\"Sheetal\"},\"url\":\"https:\/\/www.leadshook.com\/help\/author\/sheetal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create Multiple Sliders in a single Node - LeadsHook Knowledge Base","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/","og_locale":"en_US","og_type":"article","og_title":"How to create Multiple Sliders in a single Node - LeadsHook Knowledge Base","og_description":"Introduction: This guide will show you how to create multiple sliders in a single node. Currently Leadshook is only capable of having one slider in a single node. You can use the Custom code below to have multiple sliders. Note: You will need a developer if you wish to alter the code we provide for [&hellip;]","og_url":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/","og_site_name":"LeadsHook Knowledge Base","article_publisher":"https:\/\/www.facebook.com\/leadshook\/","article_published_time":"2024-08-20T18:25:31+00:00","article_modified_time":"2024-08-21T16:20:43+00:00","og_image":[{"url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2.png","type":"","width":"","height":""}],"author":"Sheetal","twitter_card":"summary_large_image","twitter_creator":"@leadshook","twitter_site":"@leadshook","twitter_misc":{"Written by":"Sheetal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#article","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/"},"author":{"name":"Sheetal","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/5139261061a0c92dc7aa58dcd033094c"},"headline":"How to create Multiple Sliders in a single Node","datePublished":"2024-08-20T18:25:31+00:00","dateModified":"2024-08-21T16:20:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/"},"wordCount":294,"publisher":{"@id":"https:\/\/www.leadshook.com\/help\/#organization"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2.png","keywords":["creating multiple sliders","CSS","editing css","javascript for sliders","multiple sliders","sliders"],"articleSection":["CSS Hacks","Decision Tree","LeadsHook"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/","url":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/","name":"How to create Multiple Sliders in a single Node - LeadsHook Knowledge Base","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#primaryimage"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2.png","datePublished":"2024-08-20T18:25:31+00:00","dateModified":"2024-08-21T16:20:43+00:00","breadcrumb":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#primaryimage","url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2.png","contentUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2024\/08\/2.png","width":905,"height":672},{"@type":"BreadcrumbList","@id":"https:\/\/www.leadshook.com\/help\/how-to-create-multiple-sliders-in-a-single-node\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.leadshook.com\/help\/"},{"@type":"ListItem","position":2,"name":"How to create Multiple Sliders in a single Node"}]},{"@type":"WebSite","@id":"https:\/\/www.leadshook.com\/help\/#website","url":"https:\/\/www.leadshook.com\/help\/","name":"LeadsHook Knowledge Base","description":"LeadsHook Training &amp; Technical Help","publisher":{"@id":"https:\/\/www.leadshook.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.leadshook.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.leadshook.com\/help\/#organization","name":"LeadsHook","url":"https:\/\/www.leadshook.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2018\/12\/leadshook-logo.png","contentUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2018\/12\/leadshook-logo.png","width":350,"height":83,"caption":"LeadsHook"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/leadshook\/","https:\/\/x.com\/leadshook","https:\/\/www.linkedin.com\/showcase\/leadshook\/"]},{"@type":"Person","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/5139261061a0c92dc7aa58dcd033094c","name":"Sheetal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b0b84df264435d13d938835e002bc75bb86f34919c86bf0ab1f2cbfb7dc02e45?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b0b84df264435d13d938835e002bc75bb86f34919c86bf0ab1f2cbfb7dc02e45?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b0b84df264435d13d938835e002bc75bb86f34919c86bf0ab1f2cbfb7dc02e45?s=96&d=mm&r=g","caption":"Sheetal"},"url":"https:\/\/www.leadshook.com\/help\/author\/sheetal\/"}]}},"_links":{"self":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/7572","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/users\/18"}],"replies":[{"embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/comments?post=7572"}],"version-history":[{"count":8,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/7572\/revisions"}],"predecessor-version":[{"id":7589,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/7572\/revisions\/7589"}],"wp:attachment":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/media?parent=7572"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/categories?post=7572"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/tags?post=7572"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}