Announcement

Collapse
No announcement yet.

V6 Popups

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

    V6 Popups

    Is there a way of totally removing any scroll bars and header info from the V6 extra info popup boxes?

    #2
    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.
    Money Saving Eco Friendly Products | UK Dating | Love Horse Dating

    Comment


      #3
      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
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment


        #4
        actiniccore.js

        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

        Comment


          #5
          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
          Norman - www.drillpine.biz
          Edinburgh, U K / Bitez, Turkey

          Comment


            #6
            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
            Bonnie
            www.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


              #7
              That's in Design / Options / Layouts / Extended Product Information.

              Norman
              Norman - www.drillpine.biz
              Edinburgh, U K / Bitez, Turkey

              Comment


                #8
                V6 Popups

                Norman

                Thanks
                Bonnie
                www.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

                Working...
                X