Post fields go up and not visible

This topic contains 3 reply and 2 voices, and was last updated by towhid 9 years, 5 months ago
Viewing 3 Posts - 1 through 3 (of 3 total)
Author Posts
November 26, 2014 at 8:39 am 31215
towhid I have this weird problem started on Sunday. I can't select post fields because they are not shown in my browser. I tested this in both IE and Chrome but same result. On the right side browser shows fields starting from 'Custom Taxonomies'. If I scroll, the actual form and left side options scroll but the right side fields won't scroll. They are fixed. When the form loads I see the post fields but immediately they go on top preventing me from selecting post fields How can I fix this? Thanks!
November 26, 2014 at 10:57 am 31219
towhid towhid

Hello Pandu,

Please open wp-content/plugins/wp-user-frontend/admin/form.php file and find

<?php if ( $fixed_sidebar == 'on' ) { ?>
            #wpuf-metabox-fields{
                position: fixed;
                bottom: 10px;
            }
            <?php } ?>

and replace with

<?php if ( $fixed_sidebar == 'on' ) { ?>
            #wpuf-metabox-fields{
                position: fixed;
                bottom: 10px;
                top:92px;
            }
            <?php } ?>

Hope this will solve your problem.

Thank You 🙂

November 26, 2014 at 11:33 pm 31262
Pandu Pandu

That broke bottom fields, I changed top and bottom size few times. Nothing worked so I disabled the fixed sidebar to off. Now the fields go with browser up and down. It’s perfect!

<?php if ( $fixed_sidebar == 'off' ) { ?>
            #wpuf-metabox-fields{
                position: fixed;
                bottom: 0px;
                top: 92px;
            }
November 27, 2014 at 10:03 am 31275
towhid towhid

Hello Pandu,

Glad to know that the problem is solved. Would you please mark the topic resolved.

Thank You.

🙂

Viewing 3 Posts - 1 through 3 (of 3 total)