Announcement

Collapse
No announcement yet.

extended info pop up screen

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    extended info pop up screen

    Hi,
    can anyone tell me if it is possible to disable the resizing button on the extended info pop-up window.
    If so, how (and where).
    Thanks in advance
    Robynne

    #2
    Hi there

    To make it non resizable, all you need to do, is to go to:
    C:\Program Files\Actinic Ecommerce v6\Sites\Site1 or what ever your sitename is called.

    Find a file called actiniccore.js, which contains the pop up window function. On here looks for
    function ShowPopUp(sUrl, nWidth, nHeight)

    Simply change:

    window.open(sUrl, 'ActPopup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars, resizable');

    to

    window.open(sUrl, 'ActPopup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars, resizable=0');

    Save it and exit then update your site

    Hope this helps
    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment


      #3
      Cool!

      Thanks Nadeem.

      Comment

      Working...
      X