as instructed in act_primary, act_primarycheckout and act_receiptprimary i have removed:
function detect()
{
framesetpage="index.htm";
thispage=window.location.href;
if (thispage.indexOf('://')<0) {thispage="://"+thispage;};
prefix=thispage.substring(0,thispage.lastIndexOf('://'));
suffix=thispage.substring(thispage.lastIndexOf('://')+3,thispage.length);
// alert('the subpage is:['+prefix+']['+suffix+']');
if (parent.location.href==window.location.href) {parent.location.href=framesetpage+"?"+prefix+"&&&"+suffix};
}
however some pages stil crash because the code hasnt been removed on them, even though i have done a full refresh of the site.
for example follow this through:
http://www.thesleepshop.co.uk/acatalog/index.html - Bedsteads - Four Posters - Cairnsmore Bedstead
here the top menu and banner (which is no longer a frame) disappears.also on these pages, the huge js files are still scripted such as act_section_trees, despite being removed from act_primary.
function detect()
{
framesetpage="index.htm";
thispage=window.location.href;
if (thispage.indexOf('://')<0) {thispage="://"+thispage;};
prefix=thispage.substring(0,thispage.lastIndexOf('://'));
suffix=thispage.substring(thispage.lastIndexOf('://')+3,thispage.length);
// alert('the subpage is:['+prefix+']['+suffix+']');
if (parent.location.href==window.location.href) {parent.location.href=framesetpage+"?"+prefix+"&&&"+suffix};
}
however some pages stil crash because the code hasnt been removed on them, even though i have done a full refresh of the site.
for example follow this through:
http://www.thesleepshop.co.uk/acatalog/index.html - Bedsteads - Four Posters - Cairnsmore Bedstead
here the top menu and banner (which is no longer a frame) disappears.also on these pages, the huge js files are still scripted such as act_section_trees, despite being removed from act_primary.
Comment