PM Notify & Guest Register bar

Modifications for phpBB3. Try the Mods here and share Your own Mods
There is no support here! Only Read Access!
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: PM Notify & Guest Register bar

Post by Stoker »

yes
Board rules! No PM support
BAT
BBCoder II
BBCoder II
Posts: 44
Joined: 03 Apr 2010, 19:25
Contact:

Re: PM Notify & Guest Register bar

Post by BAT »

Stoker » 10 Mar 2010, 20:27 wrote:PM Notify & Guest Register bar

Standard Edition

Prosilver

Open styles/prosilver/template/overall_header.html
Find and delete:

Code: Select all

<!-- IF S_USER_PM_POPUP -->
		if ({S_NEW_PM})
		{
			var url = '{UA_POPUP_PM}';
			window.open(url.replace(/&/g, '&'), '_phpbbprivmsg', 'height=225,resizable=yes,scrollbars=yes, width=400');
		}
	<!-- ENDIF -->
This is the code that does the standard popup window when there is a new private message.
We are replacing it so we dont need it anymore.
I have a question !
as you are suggesting to delete the above mentioned code -
my question is , if I donot delete this above mentioned code but implement the rest of the modification , will there be any problem in working of this modification ?
I mean , I want to keep both this PM pop-up and this PM Notify bar ....

Please answer ...
Last edited by BAT on 23 Apr 2010, 12:07, edited 1 time in total.
I am a Novice and I'm always confused . :?
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: PM Notify & Guest Register bar

Post by Stoker »

No, you can keep that piece of code.
The only thing that will happen is that the standard popup system still will work - as you want.
Board rules! No PM support
BAT
BBCoder II
BBCoder II
Posts: 44
Joined: 03 Apr 2010, 19:25
Contact:

Re: PM Notify & Guest Register bar

Post by BAT »

thank you again stroker
I am a Novice and I'm always confused . :?
Harry
BBCoder II
BBCoder II
Posts: 9
Joined: 12 Mar 2010, 21:33

Re: PM Notify & Guest Register bar

Post by Harry »

Nice THANKS ;) ;)

Image
Progress
BBCoder II
BBCoder II
Posts: 15
Joined: 13 Jun 2010, 15:04

Re: PM Notify & Guest Register bar

Post by Progress »

How I can set Register bar & Pop like here same Colours?
cisco007
BBCoder VI
BBCoder VI
Posts: 1015
Joined: 16 Mar 2010, 18:14
Location: Don't really know!

Re: PM Notify & Guest Register bar

Post by cisco007 »

please read the whole topic, this has been asked a few times already!
Progress
BBCoder II
BBCoder II
Posts: 15
Joined: 13 Jun 2010, 15:04

Re: PM Notify & Guest Register bar

Post by Progress »

when i done instuction for prosilver theme i have result like there Image
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: PM Notify & Guest Register bar

Post by Stoker »

Ye, that is what is available.
You have to do any tweaking yourself.
Board rules! No PM support
Progress
BBCoder II
BBCoder II
Posts: 15
Joined: 13 Jun 2010, 15:04

Re: PM Notify & Guest Register bar

Post by Progress »

Code: Select all

 #infobar a, #infobar a:link, #infobar a:visited, #infobar a:active
  {
    display: block;
	background-image: url(images/transhover.png);
    opacity: 0.3;
    filter:alpha(opacity=30);
    float: left;
    width:100%;
    clear: both;
    color: #d50000;
    padding: .55em 0 .55em 0;
    border-bottom: .25em solid #7F8D03;
    text-align: center;
    text-decoration: none;
    background-color :#E5E5E5;

  }

  #infobar a:hover
  {
  	background-image: url(images/transhover.png);
    color: black;
    background:#F4F4F4;
opacity: 1;
  filter:alpha(opacity=100);
   border-bottom: .25em solid #7F8D03;
    cursor: pointer;
  }
Maby you can little help?
I do not understand how to make a transparent code
Locked