View Full Version : V6 Popups
TiggyPig
28-Feb-2003, 01:18 PM
Is there a way of totally removing any scroll bars and header info from the V6 extra info popup boxes?
Redspan
03-Mar-2003, 08:11 AM
Adjusting the height and width of the popup window to suit the size of the content will remove the scroll bars. You can do this in the Extended Information area. As for titles, do you mean the product titles? The Extended Information area also has options for the layout e.g. with our without product titles under the Layout bit.
NormanRouxel
03-Mar-2003, 08:34 AM
The popup code is in actiniccore.js here's the relevant routine.
function ShowPopUp(sUrl, nWidth, nHeight)
{
window.open(sUrl, 'ActPopup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars, resizable');
}
Now if (e.g.) you wanted rid of scrollbars just change it to:-
function ShowPopUp(sUrl, nWidth, nHeight)
{
window.open(sUrl, 'ActPopup', 'width=' + nWidth + ',height=' + nHeight + ',resizable');
}
For other things you can change look in any HTML or JavaScript manual under "window.open".
Norman
carl@micro
20-Feb-2004, 03:58 PM
Hello
I was wondering if you could tell me where do i find the actiniccore.js to remove the scrollbars??
Also How do i insert a working add to cart button on the extended info pop up???
Please help!!!
Kindest regards
Carl
NormanRouxel
20-Feb-2004, 04:30 PM
The file actiniccore.js is in C:\Program Files\Actinic Ecommerce v6\Sites\Site1 (assuming you've only 1 site licensed).
As for adding an add to cart to the popups it can be done but there's quite a lot of patching involved.
See www.rouxel.cwc.net/actinicstuff.html where there's a readme on this. I wrote these things as a service to other users but I do not support them (unless you want to pay me to so do).
Norman
ocbon
12-May-2004, 05:41 PM
Is there any way to set the width and height of the Extended Information Pop Up Window so it will make it the same size for all products, instead of having to enter it for each product.
I went into Advanced Templates - Section - Extended Info and changed the numbers in this to 600 and 300, but that did not work.
--------------------------------------
<HTML>
<HEAD>
<Actinic:WINDOW WIDTH="400" HEIGHT="350"/>
--------------------
Thanks
Bonnie
NormanRouxel
12-May-2004, 06:08 PM
That's in Design / Options / Layouts / Extended Product Information.
Norman
ocbon
12-May-2004, 07:46 PM
Norman
Thanks
Bonnie:D
vBulletin® v3.8.4, Copyright ©2000-2012, Jelsoft Enterprises Ltd.