Is there a way of totally removing any scroll bars and header info from the V6 extra info popup boxes?
Announcement
Collapse
No announcement yet.
V6 Popups
Collapse
X
-
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.
-
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".
NormanNorman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
Comment
-
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).
NormanNorman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
Comment
-
V6 popups
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
Bonniewww.bonnies-gift-shop.com
Unique Gifts & Home Decor
Retail/Wholesale/Drop Shipping
www.bonniesgifts.com
Gift Baskets Gift Ideas Unique Gifts
Retail/Drop Shipping
Comment
-
That's in Design / Options / Layouts / Extended Product Information.
NormanNorman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
Comment
Comment