• Hi,

    First of all nice plugin!

    I am setting up a site where users are logged in from the frontend and therefore is the Admin bar disabled. But then there is no way to save?

    Is it possible to move the save button to the pop up for editing?

    Thanks
    MArtin

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author horiondigital

    (@horiondigital)

    yeah, i will add an option in the settings to select where you want the buttons to be displayed some time soon.

    you can actually add this to your theme file that might work:

    <style type="text/css">
    .editbtnsection {
        z-index: 99999;
        position: fixed;
        top: 10px;
        left: 0;
        /* float: right; */
    }
    
    a.ab-item {
        background: #111;
        color: white;
    }
    
    div#wp-admin-bar-root-default>li {
        list-style: none;
        margin-left: 6px;
        background: #111;
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        list-style: none;
        display: inline-block;    
        float: right;
    }
    </style>
    
    <div  id="wp-admin-bar-root-default" style="" class="editbtnsection ab-top-menu">
    <!-- Left empty intentionally -->
    </div>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Save with out Admin bar?’ is closed to new replies.