vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   New PM Popup Replacement (https://vborg.vbsupport.ru/showthread.php?t=92895)

hcmagix 07-01-2006 11:30 PM

I have the problem that my preview line ist evertime ... (I test with long and short messages on vb 3.5.4)

:(

@Stoebi in Deinem Screen siehts toll aus. bekomme immer nur die Punkte angezeigt

Stoebi 07-02-2006 05:42 AM

Quote:

Originally Posted by hcmagix
I have the problem that my preview line ist evertime ... (I test with long and short messages on vb 3.5.4)

:(

@Stoebi in Deinem Screen siehts toll aus. bekomme immer nur die Punkte angezeigt

@rossco_2005
Search for
Code:

$newpm['message']  = substr($newpm['message'], 0, strrpos(substr($newpm['message'], 0, $newpmoption['maxcharacters']), ' ')) . '...';
Replace with
Code:

$newpm['message']  = substr($newpm['message'], 0, strrpos(substr($newpm['message'], 0, $newpmoption['maxcharacters']), '')) . '...';
With these small changes a message with few letters/characters is showed.


I hope you like my engagement/interests with your work. :)


Another wish i have:
instead of ... a [more] link could be more impressing.
With a click on this link you go directly to your inbox instead to open a new window.



Kind Regards, Stoebi

Mischievious 07-02-2006 02:37 PM

Quote:

Originally Posted by Stoebi
@rossco_2005
Search for
Code:

$newpm['message']  = substr($newpm['message'], 0, strrpos(substr($newpm['message'], 0, $newpmoption['maxcharacters']), ' ')) . '...';
Replace with
Code:

$newpm['message']  = substr($newpm['message'], 0, strrpos(substr($newpm['message'], 0, $newpmoption['maxcharacters']), '')) . '...';
With these small changes a message with few letters/characters is showed.

I hope you like my engagement/interests with your work. :)

Kind Regards, Stoebi

I've tried this, and it doesn't seem to work..

Bubble #5 07-02-2006 03:15 PM

Quote:

Originally Posted by Stoebi
instead of ... a [more] link could be more impressing.
With a click on this link you go directly to your inbox instead to open a new window.

Good idea and easy to add ;)

AzzidReign 07-02-2006 03:32 PM

Quote:

Originally Posted by rossco_2005
You want the preview?
Read the first post again, there's a heading "How to enable preview".

If you mean the color then that is because it follows the colors of the skin you are using.

No, I'm sorry about not being more descriptive in my post (here)

I want the PM box that comes up to give me the option to open in current window or new window...all I get is new window and when I click that, the PM box doesnt close on the first window.

Thanks for the quick reply before, much appreciated.

oberheimhaven 07-02-2006 03:43 PM

All seemed ok however new windows opens way over to the right of the screen?> any adjustments i need to make?
Thxs
mark

Made adjustments however floats i correct and made centered instead of to the right will see if that will correct?

oberheimhaven 07-02-2006 08:10 PM

I did this iits still coming up to the right of my screen will keep hacking i guess

Stoebi 07-02-2006 09:29 PM

Quote:

Originally Posted by Mischievious
I've tried this, and it doesn't seem to work..

Hm, I've tested it with 100 characters with Firefox 1.5.0.4 and IE 6 and now
Win32Opera Version 9.00 Build 8502

Tested with vBulletin 3.5.4 and 3.6.0 Beta 3


Regards, Stoebi

Stoebi 07-02-2006 09:39 PM

Quote:

Originally Posted by oberheimhaven
I did this iits still coming up to the right of my screen will keep hacking i guess

Any screenshots? If IE, did you upload the file fixed_position_ie.js to the clientscript folder?

rossco_2005 07-03-2006 06:34 PM

Quote:

Originally Posted by oberheimhaven
I did this iits still coming up to the right of my screen will keep hacking i guess

Is it the popup that's showing to the right or the window that opens by clicking '(New Window)' ?

If it's the window that opens up then it's just a browser problem, that's where the browser wants to open the window.:confused:

@Stoebi, Thanks for your contribution I will take a look later at what you PMed to me.

GrCh_Jeff 07-04-2006 05:29 PM

It opens at the bottom/center of the page for me but works great.

Stoebi 07-04-2006 05:44 PM

Quote:

Originally Posted by GrCh_Jeff
It opens at the bottom/center of the page for me but works great.

For screen resolutions like 1024x768 change

top:250px; to top:95px; (between 75px; and 150px; should looks great with 1024x768 up to 1280x1024)

Code:

<style type="text/css">
#pm_popup {
    position:fixed;
    top:95px;
    border:1px solid;
    width:64%;
    margin-right:18%;
    margin-left:18%;
}
</style>


Regards, Stoebi

GrCh_Jeff 07-04-2006 05:58 PM

Thanx Stoebi I will try that.

oberheimhaven 07-05-2006 02:47 PM

Yes it opens to the bottom right>> and my other screen floats (main screen) Probably a simple fix? any suggestions? Thank you for the patience with me rook here learning fast, dont want to un install would like to keep nice hack!!

MarkAnthony

oberheimhaven 07-06-2006 02:40 PM

any way to correct this? The other screen floats and the messege is bottom right ? Still cant figure out I know sorry I am learning tho!!! And one thing you guys are brilliant here with these hacks, where would one learn code like that trial and error practice ect??

thx
MarkAnthony

rossco_2005 07-06-2006 04:14 PM

Can you give a screenshot 'cause i'm still not sure what you mean.
It might help.

oberheimhaven 07-06-2006 11:28 PM

Wish I could put it up dont have that feature and now it just stopped working all together I uninstalled and reinstalled Nothing ;-( back to hacking once again, what do i need to be able to do screen shot mate Im a rookie

it doesnt pop up at all now??? Erghhh back to hack

rossco_2005 07-06-2006 11:36 PM

Quote:

Originally Posted by oberheimhaven
Wish I couold put i dont have that feature and now it just stopped working all together I uninstalled and reinstalled Nothing ;-( back to hacking one again, what do i need to be able to do screen shot mate Im a rookie

Just hit the print-screen button on your keyboard and if you use windows then go into paint and press ctrl+v or edit->paste
Then save and upload.

b3hr0uz 07-07-2006 02:20 AM

there is no popup , but it adds a page under the index.php that shows new mesage but its not a popup

oberheimhaven 07-07-2006 02:36 AM

Correct!!!!! Now Mine wont work at all LOL Still tweaking

b3hr0uz 07-07-2006 05:51 AM

ok i found something . it works on Firefox and Opera But not on IE ( Internet Explorer )

Kanustep 08-25-2006 10:31 AM

Don't work in 3.6.0. Please update you hack, is a very good one and my users love it!

rossco_2005 08-25-2006 11:09 PM

Quote:

Originally Posted by Kanustep
Don't work in 3.6.0. Please update you hack, is a very good one and my users love it!

Does...:confused:

Kanustep 08-25-2006 11:17 PM

Does? It stop working on installing 3.6.0

upsetter 08-27-2006 07:04 AM

mine wont work eather... :( what could be wrong?... no errors... no pop up's using 3.5.4 in IE on one of my forums that I installed it at... :cross-eyed:

Nokia Tech 08-27-2006 09:45 PM

Clicks Install, 100% Perfect with 3.5.4

Gizmo5h1t3 11-11-2006 06:23 PM

theres gotta be some inherent problem with this, for so many ppl to be struggling to see the pop up?

is there any support still going with this hack??

brhoom 11-25-2006 06:08 PM

No errors, but no popup either ,3.5RC2 IE 6

akanevsky 11-25-2006 07:59 PM

Nice hack, but the javascript is far more complex than it should be.

TitanPK 12-31-2006 05:03 PM

Does this work in 3.6.4?

TitanPK 01-02-2007 07:52 PM

installed, popup comes up way over to the right.
any fix?

CP, 01-14-2007 01:24 PM

Hi there the popup pm box only shows the pm title and not the first few lines of the pm message, how can i fix this? ive changed the default variables but it still does not show.

TitanPK 01-20-2007 02:35 AM

ok finally got this working in 3.6.4
It seem you MUST have the preview function enabled for everything to center properly

Bubble #5 01-20-2007 03:09 AM

Quote:

Originally Posted by TitanPK (Post 1148159)
Does this work in 3.6.4?

Yes.

Quantnet 01-21-2007 04:53 AM

installed on 3.6.4 and it seems to work so far. thanks

thpoul 02-02-2007 04:29 PM

I won't work on my 3.6.4..... my address looks like this----> http://forum.mydomain.com/

Anybody?

Barakat 04-13-2007 10:56 AM

installed on 3.6.5 and it seems to work so far. thanks

Deeper 06-01-2007 02:53 PM

Mode installed on VBB 3.6.7 PL1 without problem thank you :)

puertoblack2003 06-30-2007 05:41 PM

do this work for custom skin ???for some reason its not working on newer version of vb????

JackNorris 07-19-2007 05:21 AM

Quote:

Originally Posted by TitanPK (Post 1149355)
installed, popup comes up way over to the right.
any fix?

check the pm_popup_script template and try replace the appropriate section with this

Code:

#pm_popup
{
    position: fixed;
    top: 250px;
    border: 1px solid;
    width: 60%;
    left: 20%;
    right: 20%;
    margin: 0px;
}



All times are GMT. The time now is 09:15 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01418 seconds
  • Memory Usage 1,818KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete