I got rid of the error by changing and eliminating the # in front of the placeholder text property name.
$w(" #LBoepartno “).src = item.oe_part_no;
$w(” #LBcomments ").src = item.comments;
so NO longer have any errors on page
Here is current Lightbox code to display all item in the lighbox:
// For full API documentation, including code examples, visit Velo API Reference - Wix.com
import {lightbox} from ‘wix-window’;
$w.onReady( () => {
let item = lightbox.getContext();
console.log(item)
$w(“CVPartImg”).src = item.photo_image_url;
$w(“LBdescription”).src = item.description;
$w(“LBoepartno”).src = item.oe_part_no;
$w(“LBcomments”).src = item.comments;
});
HOWEVER. NO items show up on lightbox. Does the lightbox have to have the dynamic database attached?