When I use pop-up on my pictures it shows the WIX image file name at the bottom. Can this be removed?
If you add a tooltip to your image, it appears under the image in the pop-up window.
https://support.wix.com/en/article/setting-your-images-to-open-in-a-pop-up-when-clicked
https://support.wix.com/en/article/adding-a-tooltip-to-an-image
https://support.wix.com/en/article/adding-alt-text-to-your-image
https://support.wix.com/en/article/adding-a-title-and-description-to-gallery-images
https://support.wix.com/en/article/changing-your-gallery-image-settings-in-your-media-manager
GoodDay givemeawhisky,
I have tried all of these methods on my images and it still displays the same. Any other ideas?
Yes you just simply delete what is in the Image Text boxes.
Note:
To remove the tooltip, follow the instructions above but in step 3, delete the text.
GoodDay givemeawhisky,
Here is what I now have: Still can’t get rid of WIX Image name??? I am not using a Gallery, just an image.
GoodDay givemeawhiskey,
Just did a test on a page and it worked.
I think the issue maybe related to the following:
The picture is being loaded on a DynamicPage from a database image field.
Any ideas?
Hey, I’m having the same problem with the tooltip and the dynamic pages, did you solve it somehow?
For dynamic images you’ll need to set it in the code.
in the dataset onReady or repeater onItemReady you set the image like:
$item('#image1').tooltip = null
$item('#image1').alt = null
also for me same issue
changed $item to $w from above instruction to have global affect on all list items
$w ( ‘#image1’ ). tooltip = null
$w ( ‘#image1’ ). alt = null
Hi Bill,
Did you ever find a way to remove the file name from popping up on hover? I’ve tried inserting the code above, but that only seems to change the alt text and tooltip, which there are already options to change in th editor. The only workaround I can find is to use a pro gallery, which has the option to turn of the file name popup. But the layout options for a gallery are pretty limited.
Wasn’t entering the code correctly. Got it to work now after reading more Velo tutorials