Viewing 12 replies - 1 through 12 (of 12 total)
  • Ditto

    Same problem here! I hope this is addressed because this really is the best plugin of its kind.

    Same issue, so I found one solution.

    Just change this line:

    $(‘#widgets-right’).on(‘click’, ‘a.clone-widget’, Oomph.CloneWidgets.Clone);

    To this:

    $(‘#widgets-right’).on(‘click’, ‘.clone-widget-action’, Oomph.CloneWidgets.Clone);

    Thanks vensonkuchipudi
    That fix worked perfectly.
    Hopefully the devs see this and make the change.

    Wow, thanks vensonkuchipudi! That was so simple. Now the plugin works just like it used to!

    Also, if anyone is interested in a simple aesthetic change, change this line:

    .oomph-cloneable:hover a.clone-widget { margin-left: 0; }

    To this:

    .oomph-cloneable:hover a.clone-widget { margin-left: 0; cursor:pointer; }

    Now, when you hover over the “plus” button, you see the pointer finger instead of the cursor. Small change, but it keeps everything running/looking smooth!

    Yep… This worked for me as well

    Thanks vensonkuchipudi just what we needed!

    Fix worked, thx for sharing!

    Yes, fix worked

    datatab

    (@datatab)

    GREAT…

    pixeldroid

    (@pixeldroid)

    Thanks much for the fixes.

    I ended up fixing this issue by adding some CSS so now you can hover over the actual + symbol.

    Here’s the fix.

    add this to your functions.php. Minor CSS fixes it.

    function custom_admin_css() {
       echo '<style type="text/css">
    .widget-top a.widget-action, .widget-top a.widget-action:hover {
        padding: 1px;
        display: inline-block;
    }         </style>';
    }
    
    add_action('admin_head', 'custom_admin_css');

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Not working with 4.3’ is closed to new replies.