3.2.x Extensions Database 3.2 / 3.3Private Message info

<span class="qte-attr qte_32_33-qte">3.2.x & 3.3.x</span>
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Topic Author
dmzx
Founder
Founder
Status: Offline
User theme: Dark
Posts: 6488
Joined: Jan 13th, '14, 20:45
    Windows 10 Chrome

Private Message info

Post by dmzx »

Extension Name: Private Message info
Author: dmzx

Special thanks to: martin

Extension Description:
Private message info in nice drop down.



Screenshot:
Image

Extension Download:
Download-link
Private Message info v1.0.0
Installation:
  1. Download the latest release.
  2. Unzip the downloaded release, and change the name of the folder to `privatemessageinfo`.
  3. In the `ext` directory of your phpBB board, create a new directory named `dmzx` (if it does not already exist).
  4. Copy the `privatemessageinfo` folder to `/ext/dmzx/` if done correctly, you'll have the main extension class at
    (your forum root)/ext/dmzx/privatemessageinfo/composer.json
  5. Navigate in the ACP to `Customise -> Manage extensions`
  6. Look for `Private Message info` under the Disabled Extensions list, and click its `Enable` link.

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

lopoto
Users
Users
Status: Offline
User theme: Dark
Posts: 76
Joined: Dec 28th, '14, 00:59
    Windows 10 Firefox

Re: Private Message info

Post by lopoto »

Nice :beers:

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Anders
Users
Users
Status: Offline
User theme: Dark
Posts: 80
Joined: Sep 15th, '15, 06:15
    Linux Chrome

Re: Private Message info

Post by Anders »

Like it thanks :beers: :beers:

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Midway
Translators
Translators
Status: Offline
User theme: Dark
Posts: 115
Joined: Dec 8th, '14, 09:27
    Windows 7 Firefox

Re: Private Message info

Post by Midway »

Very good I like it thanks

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

zardos
Users
Users
Status: Offline
User theme: Dark
Posts: 175
Joined: Feb 26th, '16, 22:20
    Ubuntu Firefox

Re: Private Message info

Post by zardos »

Very nice, Thanks
Image

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

dsaf
Users
Users
Status: Offline
User theme: Dark
Posts: 33
Joined: Jan 17th, '15, 16:51
    Windows 10 Chrome

Re: Private Message info

Post by dsaf »

Download doesnt work? :guns:

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Topic Author
dmzx
Founder
Founder
Status: Offline
User theme: Dark
Posts: 6488
Joined: Jan 13th, '14, 20:45
    Windows 10 Chrome

Re: Private Message info

Post by dmzx »

dsaf wrote: Jan 9th, '17, 07:09 Download doesnt work? :guns:
Works normal here, try again.

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Xxxbennyxxx
Users
Users
Status: Offline
User theme: Dark
Posts: 74
Joined: Dec 30th, '14, 21:23
    Windows 8.1 Chrome

Re: Private Message info

Post by Xxxbennyxxx »

How can I change the color of the box?
Because changes below do not work

Code: Select all

.privatemessageinfo {
	animation: privatemessageinfo 15s;
	color: #fff;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
	background: rgba(16, 82, 137, 0.8);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='##b30089f', endColorstr='#b30089',GradientType=0 );
	border: #fff solid 4px;
	border-radius: 10px;
	display: none;
	left: 0;
	right: 0;
	margin: 0px auto;
	padding: 10px 2px 15px;
	position: fixed;
	text-align: center;
	top: -304px;
	width: 45%;
	height: 9em;
	overflow: hidden;
	z-index: 500;
}

a.privatemessageinfobutton:link {
	font-size: 1.4em;
	color: #fff;
	vertical-align: middle;	
}

a.privatemessageinfobutton:visited {
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
}

a.privatemessageinfobutton:hover {
	font-size: 1.4em;
	color: #ccc;
	vertical-align: middle;
}

a.privatemessageinfoclose:link {
	font-size: 1.4em;
	color: #fff;
	vertical-align: middle;
}

a.privatemessageinfoclose:visited {
	color: #fff;
	font-size: 11px;
	font-weight: bold;
}

a.privatemessageinfoclose:hover {
	font-size: 1.4em;
	color: #ccc;
	vertical-align: middle;
}

.privatemessageinfobutton_text {
	font-size: 1.4em;
	color: #fff;
	vertical-align: middle;
}

@media only screen and (max-width: 350px), only screen and (max-device-width: 350px) {
	.privatemessageinfo {
		animation: none;
	}
}

@keyframes privatemessageinfo {0% {top:-304px;} 10% {top:40px;} 90% {top:40px;} 100% {top:-304px;}}


[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Topic Author
dmzx
Founder
Founder
Status: Offline
User theme: Dark
Posts: 6488
Joined: Jan 13th, '14, 20:45
    Windows 10 Chrome

Re: Private Message info

Post by dmzx »

The background: rgba(16, 82, 137, 0.8); in .privatemessageinfo { is for the colour.
Change that and clear cache.

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

infspirit
Translators
Translators
Status: Offline
User theme: Dark
Posts: 25
Joined: Sep 13th, '15, 18:50
    Windows 8.1 Chrome

Re: Private Message info

Post by infspirit »

Spanish translation :)
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Musiker15
Users
Users
Status: Offline
User theme: Dark
Posts: 29
Joined: Oct 7th, '16, 14:10
    Windows 10 Chrome

Re: Private Message info

Post by Musiker15 »

German Translation
de.rar
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
I'm from Germany so my English is not the best...
________________________________________________________________
Image

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Smayliks
Users
Users
Status: Offline
User theme: Dark
Posts: 2
Joined: Nov 29th, '16, 06:41
    Windows 7 Firefox

Re: Private Message info

Post by Smayliks »

Translate for russian
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

shekar4evr
Users
Users
Status: Offline
User theme: Dark
Posts: 2
Joined: Apr 27th, '17, 16:01
    Windows 7 Firefox

Re: Private Message info

Post by shekar4evr »

Excellent . thank you very much

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Sinister Smile
Users
Users
Status: Offline
User theme: Dark
Posts: 63
Joined: Jan 6th, '17, 18:50
    Windows 7 Chrome

Re: Private Message info

Post by Sinister Smile »

Is it possible to phpbb 3.1.10?

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Topic Author
dmzx
Founder
Founder
Status: Offline
User theme: Dark
Posts: 6488
Joined: Jan 13th, '14, 20:45
    Windows 10 Chrome

Re: Private Message info

Post by dmzx »

Sinister Smile wrote: May 22nd, '17, 12:21 is it possible to phpbb 3.1.10?
This extension uses fa icons and only default in 3.2
Thats why only for 3.2 for now, maybe future release.