Support Forum
Sorry but like Steve on his Windows machine I can not replicate any such behaviour on this site or any other using my Mac and all current and main browsers. They all behave as expected. We also have no other such reports which makes it extremely difficult as we have nothing to work with and to track down.
YELLOW
SWORDFISH
|
I am afraid there is no direct way to do this without editing our core files currently... I can probably stick a quick filter in their for the next release which should be in a day or two if you can wait that long... Or I can give you the necessary code change now...
Visit Cruise Talk Central and Mr Papa's World
The pm plugin update with the filter should be available now...
the filter you will want to use is 'sph_pm_inbox_max_height'...
this will be the max size setting in pixels...
make sure you get pm version 1.5.2... and you will need to update to 5.2.1 first (for other reasons)...
Visit Cruise Talk Central and Mr Papa's World
filters work just like any other wp filter, hook or action...
for simplicity here, lets add this to your spFunctions.php file...
add_filter('sph_pm_inbox_max_height', 'my_pm_height_control'); function my_pm_height_control($height) { $height = 600; return $height; }
just change the 600 to whatever you want... this will set a fixed height for all users... please be advised this will override/ignore any personal setting users make in their profile...
Visit Cruise Talk Central and Mr Papa's World
1 Guest(s)