Opening lightbox based on blog post

Trying to figure this out and any help is most appreciated;

Want to open a specific lightbox only when specific blog posts are browsed.

Trying with following code on masterPage.js without any luck…

import wixLocation from 'wix-location'; 
import wixWindow from 'wix-window'; 

$w.onReady(function () { 
 let url = wixLocation.path;
 if (url = "post/article1" { 
        wixWindow.openLightbox('lightboxpromo');
 } 
}); 

Anyone can help out? Thanks

Hello,

I would recommend using getPost() function on the Post page to retrieve post data and the “postPageUrl” field to validate the URL. Also, proper validation uses === instead of just one equals sign.

You may need to use onChange event handler to handle cases in which your site visitor changes between blog posts.

Best regards.

import wixLocation from ‘wix-location’;
import wixWindow from ‘wix-window’;

$w.onReady(function () {
let url = wixLocation.path;
if (url[0] === “post” && url[1] === “article1”) {
wixWindow.openLightbox(‘lightboxpromo’);
}
});