I would like to create a pop up window (exactly like estimate shipping pop up) to show a size guide chart.
Is there a function already in Admin,or would it require coding.
Some guidance to what files need to be modified would be appreciated
I would like to create a pop up window (exactly like estimate shipping pop up) to show a size guide chart.
Is there a function already in Admin,or would it require coding.
Some guidance to what files need to be modified would be appreciated
Let me first say that by no means am I proficient at this. But I needed the same thing. In my site you would click on a font name and a popup would appear and show you the entire alphabet in that font. I created an ez page then added the following code to it. Though there may be a better place to put the java script, I'm not aware of it yet as I'm still learning.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script language="JavaScript" type="text/javascript">
<!--
function openpicture(url)
{
var rateWin= window.open(url,"rates","width=650,height=300,resizable=no,scrollbars=no,top=50, left=125");
if (rateWin.focus != null) rateWin.focus();
}
//-->
</script>
</head>
then where you want the link to be place this
<a href="javascript:openpicture('images/popups/arial_bold_alph.png')"><img src="images/fonts/arial_bold.png" width="150" height="44" align="top" border="0"></a>
You would at minimum need to change the red text to fit your own needs. The first red text is the popup window where you would put your size chart. The second appears as the link you click on to get the popup.
I'm still developing my site and this works running off a local host.
Good Luck