Can someone help me understand what this error and warning is related to?
Thanks
Please post the slideshow code here.
Here you go…
<!doctype html>
<html>
<head>
<base href="/">
<script src="dmxAppConnect/dmxAppConnect.js"></script>
<meta charset="UTF-8">
<title>Untitled Document</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css" integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc" crossorigin="anonymous" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="bootstrap/5/css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="dmxAppConnect/dmxSlideshow/dmxSlideshow.css" />
<script src="dmxAppConnect/dmxSlideshow/dmxSlideshow.js" defer=""></script>
<link rel="stylesheet" href="dmxAppConnect/dmxSlideshow/themes/default.css" />
</head>
<body is="dmx-app" id="">
<dmx-serverconnect id="sc_slider_featured" url="dmxConnect/api/qry/featured_img.php"></dmx-serverconnect>
<div class="container">
<div class="row">
<div class="col">
<dmx-slideshow id="slideshow1" dmx-bind:slides="sc_slider_featured.data.query" slide-url="query[0].filename" slide-thumb="query[0].filename" slide-title="query[0].link_name" slide-description="query[0].alias" start-random="true" show-nav="true" show-paging="true" pause-on-hover="true"></dmx-slideshow>
</div>
</div>
</div>
<script src="bootstrap/5/js/bootstrap.bundle.min.js"></script>
</body>
</html>
Your code doesn’t seem correct.
This should become:
<dmx-slideshow id="slideshow1" dmx-bind:slides="sc_slider_featured.data.query" slide-url="filename" slide-thumb="filename" slide-title="link_name" slide-description="alias" start-random="true" show-nav="true" show-paging="true" pause-on-hover="true"></dmx-slideshow>
without the query[0]. part.
That was it - Thanks - Appreciate this product more and more everyday