PM Notify & Guest Register bar

Modifications for phpBB3.
Try the Mods here and share Your own Mods
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

Re: PM Notify & Guest Register bar

Post by Stoker »

yes

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, 10:07, edited 1 time in total.

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.

Re: PM Notify & Guest Register bar

Post by BAT »

thank you again stroker

Re: PM Notify & Guest Register bar

Post by Harry »

Nice THANKS ;) ;)

Image

Re: PM Notify & Guest Register bar

Post by Progress »

How I can set Register bar & Pop like here same Colours?

Re: PM Notify & Guest Register bar

Post by cisco007 »

please read the whole topic, this has been asked a few times already!

Re: PM Notify & Guest Register bar

Post by Progress »

when i done instuction for prosilver theme i have result like there Image

Re: PM Notify & Guest Register bar

Post by Stoker »

Ye, that is what is available.
You have to do any tweaking yourself.

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