Online Store Builder & eCommerce Checkout System

Welcome to our Support Portal!

A place where you can easily find solutions and ask questions

Call: +1-866-324-2764
Home Spacer|Spacer FAQ Spacer|Spacer Contact Us Spacer|Spacer Create Ticket Spacer|Spacer Announcements Spacer
Spacer

POPULAR TOPICS

Spacer



Can I disable the popup item image lightbox?

Yes, if you do not want to show the built in light box functionality for item images insert the following code in the browse_item_details.asp page.

<script type="text/javascript">
                                 
function disableLinks()
{
 
try
{
var divContainer = document.getElementById("divContainer");
var links = divContainer.getElementsByTagName('a');
 
  for(var i = 0; i < links.length; i++)
  {  
    links[i].removeAttribute('href');
  }
}
catch(e)
{}
}
 
var t = window.setInterval("disableLinks()",1000);
 
</script>