Advanced search  

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Pages: [1]   Go Down

Author Topic: Taking out titlebar in popup ?  (Read 8151 times)

0 Members and 1 Guest are viewing this topic.

babylon

  • Coppermine newbie
  • Offline Offline
  • Posts: 9
Taking out titlebar in popup ?
« on: January 08, 2005, 02:37:56 am »

Hello all,


first i like the coppermine very much and like to set some things as i realy want it.
i have a question about the popup...
Can i change the popup so it doesnt show the addressbar ?
As far as i could figure out the popup is done via displayimage.php and tried like...addressbar=no ,but that doesnt respond...
I knew i was probably doing it wrong but can it bee changed ?

Thanks,

Babylon ;)
« Last Edit: January 09, 2005, 06:12:42 pm by kegobeer »
Logged

kegobeer

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 4637
  • Beer - it does a body good!
    • The Kazebeer Family Website
Re: Taking out addressbar in popup ?
« Reply #1 on: January 08, 2005, 03:08:09 am »

Here's a good link about how to open and control the features of a new window using javascript.  There is no 'addressbar' property, but there is 'toolbar' and 'menubar'.  Refer to the link for more information.

The javascript is in scripts.js, in the root Coppermine directory, in case you were wondering.
Logged
Do not send me a private message unless I ask for one.  Make your post public so everyone can benefit.

There are no stupid questions
But there are a LOT of inquisitive idiots

babylon

  • Coppermine newbie
  • Offline Offline
  • Posts: 9
Re: Taking out addressbar in popup ?
« Reply #2 on: January 08, 2005, 03:47:05 am »

link ....what link?  :-[

so....to what should this be changed then...im not good at this... :\'(


Code: [Select]
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function writeCookie(name, data, noDays){
  var cookieStr = name + "="+ data
  if (writeCookie.arguments.length > 2){
    cookieStr += "; expires=" + getCookieExpireDate(noDays)
    }
  document.cookie = cookieStr
}

function readCookie(cookieName){
   var searchName = cookieName + "="
   var cookies = document.cookie
   var start = cookies.indexOf(cookieName)
   if (start == -1){ // cookie not found
     return ""
     }
   start += searchName.length //start of the cookie data
   var end = cookies.indexOf(";", start)
   if (end == -1){
     end = cookies.length
     }
   return cookies.substring(start, end)
}

function blocking(nr, cookie, vis_state)
{
        if (document.layers)
        {
                current = (document.layers[nr].display == 'none') ? vis_state : 'none';
                if (cookie != '')
                        writeCookie(nr, current);
                document.layers[nr].display = current;
        }
        else if (document.all)
        {
                current = (document.all[nr].style.display == 'none') ? vis_state : 'none';
                if (cookie != '')
                        writeCookie(nr, current);
                document.all[nr].style.display = current;
        }
        else if (document.getElementById)
        {
                display = (document.getElementById(nr).style.display == 'none') ? vis_state : 'none';
                if (cookie != '')
                        writeCookie(nr, display);
                document.getElementById(nr).style.display = display;
        }
}


function adjust_popup()
{
        var w, h, fixedW, fixedH, diffW, diffH;

        if (document.all) {
                fixedW = document.body.clientWidth;
                fixedH = document.body.clientHeight;
                window.resizeTo(fixedW, fixedH);
                diffW = fixedW - document.body.clientWidth;
                diffH = fixedH - document.body.clientHeight;
        } else {
                fixedW = window.innerWidth;
                fixedH = window.innerHeight;
                window.resizeTo(fixedW, fixedH);
                diffW = fixedW - window.innerWidth;
                diffH = fixedH - window.innerHeight;
        }
        w = fixedW + diffW;
        h = fixedH + diffH;
        if (h >= screen.availHeight) w += 16;
        if (w >= screen.availWidth)  h += 16;
        w = Math.min(w,screen.availWidth);
        h = Math.min(h,screen.availHeight);
        window.resizeTo(w,h);
        window.moveTo((screen.availWidth-w)/2, (screen.availHeight-h)/2);
}
Logged

Tranz

  • Dev Team member
  • Coppermine addict
  • ****
  • Country: 00
  • Offline Offline
  • Gender: Female
  • Posts: 6149
Re: Taking out addressbar in popup ?
« Reply #3 on: January 08, 2005, 03:48:56 am »

Could you post a (direct) URL to an image with a popup? My popups don't show the addressbar.
Logged

kegobeer

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 4637
  • Beer - it does a body good!
    • The Kazebeer Family Website
Logged
Do not send me a private message unless I ask for one.  Make your post public so everyone can benefit.

There are no stupid questions
But there are a LOT of inquisitive idiots

babylon

  • Coppermine newbie
  • Offline Offline
  • Posts: 9
Re: Taking out titlebar in popup ?
« Reply #5 on: January 09, 2005, 02:09:54 am »

Ok..il post it again and a little bit clearer......


Hi all...

have a technical question..
had a simular one on other forum but its not realy about templates or design....

so im starting it here again.....

my problem is this....
When you click on a image in the gallery at some point if you want to look the full picture you get the popup...right?

Okay....but my gallery is installed on a subdomain..
So when you get the popup..you see the same url like here on coppermine..http://coppermine.sourceforge.net   the subdomain url...
And that address shows all on top of the popup window...(in big blue border)
So how can i change that...so it doesnt display the root url...
Or can i change the popup to a chromeless kind ?
Or do i have to disable the popup ?
Any help please...
Logged

donnoman

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 1615
  • From donovanbray.com
    • Donovan Bray
Re: Taking out titlebar in popup ?
« Reply #6 on: January 09, 2005, 02:22:28 am »

I would guess that you don't have your target address configured properly in your config.

Here's the doc's:
http://coppermine.sourceforge.net/manual.php#config_general

This is somewhat misleading since it says it only applies to e-cards, but in truth it applies to any pop-ups that coppermine produces.

Quote

Target address for the 'See more pictures' link in e-cards
This is the URL where a user will be directed when he will click on the "See more pictures" link in an e-card (just the path to your coppermine folder, e.g. http://yourdomain.tld/coppermine/). Don't specify a certain file (like index.php) in this field.
This must be the URL of your gallery, since the value entered here is used in other parts of Coppermine as well.

Logged

donnoman

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 1615
  • From donovanbray.com
    • Donovan Bray
Re: Taking out titlebar in popup ?
« Reply #7 on: January 09, 2005, 02:28:53 am »

Also regarding your full size pic popup; The html is in displayimage.php you can enter the parameters to limit the toolbar there instead of modifying scripts.js

look in the html_picture() function:
Code: [Select]
           $pic_html = "<a href=\"javascript:;\" onClick=\"MM_openBrWindow('displayimage.php?pid=$pid&fullsize=1','" . uniqid(rand()) . "','scrollbars=yes,toolbar=yes,status=yes,resizable=yes,width=$winsizeX,height=$winsizeY')\">";
Logged

babylon

  • Coppermine newbie
  • Offline Offline
  • Posts: 9
Re: Taking out titlebar in popup ?
« Reply #8 on: January 09, 2005, 02:57:42 am »

hi thanks ...

but i figured that target address needed to be changed....
But it doesnt make any difference..
it still shows the subdomain name instead of the url everybody should see..
It simple shows the subdomain where it originaly is installed...
Disabeling the popup or chromeless would solve it....

Weird thing is,i have in the same folder(sub) a blog installed and that shows the urls right as it should....
the situations is,i bought a domainname and asked my host to link that domain to the subdomain....(running more sites on one account)

the blog shows all correct but the gallery still falls back the the real url...
Any understand what i mean ?
if not then please suggest a disable tutorial...... :\'(
Logged

donnoman

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 1615
  • From donovanbray.com
    • Donovan Bray
Re: Taking out titlebar in popup ?
« Reply #9 on: January 09, 2005, 03:05:42 am »

babylon were going to need to see an example. can you post a url to your gallery?
Logged

babylon

  • Coppermine newbie
  • Offline Offline
  • Posts: 9
Re: Taking out titlebar in popup ?
« Reply #10 on: January 09, 2005, 03:10:02 am »

well that would be difficult cause i modified some pages so in order to see something you have to be logged in...
but signing up is just as good...http://www.euroblog.nl/gall/login.php  Warning, not worksafe, adult content
« Last Edit: January 09, 2005, 03:36:24 pm by Casper »
Logged

kegobeer

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 4637
  • Beer - it does a body good!
    • The Kazebeer Family Website
Re: Taking out titlebar in popup ?
« Reply #11 on: January 09, 2005, 03:26:05 am »

Create a test user account and post the name/password here.
Logged
Do not send me a private message unless I ask for one.  Make your post public so everyone can benefit.

There are no stupid questions
But there are a LOT of inquisitive idiots

babylon

  • Coppermine newbie
  • Offline Offline
  • Posts: 9
Re: Taking out titlebar in popup ?
« Reply #12 on: January 09, 2005, 03:47:54 am »

well i dont have to do that,just signup....
Logged

Tranz

  • Dev Team member
  • Coppermine addict
  • ****
  • Country: 00
  • Offline Offline
  • Gender: Female
  • Posts: 6149
Re: Taking out titlebar in popup ?
« Reply #13 on: January 09, 2005, 04:04:23 am »

well i dont have to do that,just signup....

No. You cannot expect supporters to sign up for dozens of galleries to help. Just remember you are not the only person ever asking for help pertaining to login issues.
Logged

babylon

  • Coppermine newbie
  • Offline Offline
  • Posts: 9
Re: Taking out titlebar in popup ?
« Reply #14 on: January 09, 2005, 02:27:44 pm »

ok sorry...
login is              user
password is...    test

thats the easiest login i could think off... ;)
Logged

Casper

  • VIP
  • Coppermine addict
  • ***
  • Country: 00
  • Offline Offline
  • Gender: Male
  • Posts: 5231
Re: Taking out titlebar in popup ?
« Reply #15 on: January 09, 2005, 03:39:19 pm »

First, always post a warning when posting a url to a site containing nudity or other adult content.

I don't understand your problem, your pop-ups act as expected for me, see the screenshots below (one in firfox, one in IE)

I suggest you provide a screenshot to explain.
Logged
It has been a long time now since I did my little bit here, and have done no coding or any other such stuff since. I'm back to being a noob here

donnoman

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 1615
  • From donovanbray.com
    • Donovan Bray
Re: Taking out titlebar in popup ?
« Reply #16 on: January 09, 2005, 04:29:42 pm »

I think thats what he doesn't like is that it's displaying the domain in the fullsize pic pop-up, and wants it like the first screenshot.
It's not that the full size pic is not working.

The code that sets the title is in displayimage.php

function display_fullsize_pic()
Code: [Select]
<title><?php echo $CONFIG['gallery_name'?>: <?php echo $lang_fullsize_popup['click_to_close'];
    
?>
</title>

Adding the domain name to windows without an address bar appears to be a "feature" from the browser rather than put there by Coppermine.

You may just have to live with it.
Logged

babylon

  • Coppermine newbie
  • Offline Offline
  • Posts: 9
Re: Taking out titlebar in popup ?
« Reply #17 on: January 09, 2005, 06:03:42 pm »

well both are right,man i feel stupid...
i think i was watching some weird cache or whatever cause yesterday it showed a different web address...
but its ok now...thanks for all your time guys...
Logged

kegobeer

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 4637
  • Beer - it does a body good!
    • The Kazebeer Family Website
Re: Taking out titlebar in popup ?
« Reply #18 on: January 09, 2005, 06:12:20 pm »

No problem.  I'm going to mark this thread as invalid, since there was no real problem.
Logged
Do not send me a private message unless I ask for one.  Make your post public so everyone can benefit.

There are no stupid questions
But there are a LOT of inquisitive idiots
Pages: [1]   Go Up
 

Page created in 0.055 seconds with 20 queries.