Home
|
FAQ
|
Contact Us
|
Create Support Ticket
|
Announcements
Online Store Builder & eCommerce Checkout System
Welcome to our Support Portal!
A place where you can easily find solutions and ask questions
POPULAR TOPICS
Home
FAQ
Articles
Administration
Customers
Customization
Domains
Emails
Inventory
Marketing
Payments
Sales
Security
Shipping
Templates
Miscellaneous
Create Support Ticket
Top
Customization
The item was successfully added to the shopping cart.
View Cart
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>