Results 1 to 3 of 3
  1. #1
    Join Date
    Jul 2008
    Posts
    360
    Plugin Contributions
    0

    Default What script handles the pop ups?

    I have a problem with a pop up and no matter what I can't find the script that has the code. I tried with the developer Toolkit and modules/pages/popupimage, etc and yet I don't seem to find, the script that controls pop ups.

  2. #2
    Join Date
    Oct 2006
    Location
    Alberta, Canada
    Posts
    4,571
    Plugin Contributions
    1

    Default Re: What script handles the pop ups?

    To what pop-ups are you referring to?

  3. #3
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: What script handles the pop ups?

    taking a shoot in the dark...

    any page that makes use of the popup system, which are the
    includes/templates/YOUR_TEMPLATE/popup_NAME
    includes/modules/pages/popup_NAME
    and any language files needed
    has to have a script call to the popup which resides in the page folder as in
    includes/modules/pages/product_info/jascript_main.php

    called within a link as:
    Code:
    <a href="javascript:popupWindow(\\\'' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '\\\')">
    the script:
    Code:
    function popupWindow(url) { 
      window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150') 
    }
    And that's just a simple popup! if you want to get more advanced, use something like Colorbox..
    Dave
    Always forward thinking... Lost my mind!

 

 

Similar Threads

  1. No right click script on large pop up image
    By Didee in forum General Questions
    Replies: 3
    Last Post: 12 Aug 2010, 02:40 PM
  2. Pop Ups on my site? What are they?
    By Baysbeauty in forum General Questions
    Replies: 11
    Last Post: 19 Nov 2008, 07:45 PM
  3. pop up script
    By photogold in forum General Questions
    Replies: 0
    Last Post: 1 Nov 2006, 11:13 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg