Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • in reply to: Backend Menu Drag&Drop broken #1283095

    Hi,

    that doesn’t work for me.
    The dotted placeholder is still stuck at the left side when dragging a menu item.

    Best regards
    Felix

    in reply to: Backend Menu Drag&Drop broken #1282936

    Hi Ismael,
    the solution you provided does not work as expected. I figured out my own (ugly) temporary solution but would be glad if it get’s fixed in the future releases.

    style-admin.css:

    /* Fix Enfold Menu Bug */
    .menu-item-depth-1 {
        margin-left: 30px;
    }
    .menu-item-depth-2 {
        margin-left: 60px;
    }
    .menu-item-depth-3 {
        margin-left: 90px;
    }
    .menu-item-depth-4 {
        margin-left: 120px;
    }
    .menu-item-depth-5 {
        margin-left: 150px;
    }
    /* add more depth if needed... */

    Remember to add your stylesheet to the admin section:

    functions.php:

    function admin_style() {
       wp_enqueue_style('admin-styles', get_stylesheet_directory_uri().'/style-admin.css');
    }
    
    add_action('admin_enqueue_scripts', 'admin_style');

    Cheers,
    Felix

    in reply to: Backend Menu Drag&Drop broken #1280662

    Hi Nikko,

    I didn’t hear anything so far from you or the devs. Were you able to figure out the problem?
    The temporary login is valid this week again if you want to do some further investigations.

    Cheers!
    Felix

    in reply to: Backend Menu Drag&Drop broken #1275113

    Hi Nikko,

    the problem is, that the dotted box does not have the correct indentation since the margin is overridden by the avia.css.
    So you can’t visually see what the current level of the dragged element is.

    Best regards,
    Felix

    in reply to: Backend Menu Drag&Drop broken #1274781
    This reply has been marked as private.
    in reply to: Custom Advanced Layout Builder Elements #1074100

    try to activate the debug mode for wordpress. That will help you to find the errors.

    wp_config.php:
    define('WP_DEBUG', true);

    in reply to: Custom Advanced Layout Builder Elements #1074094

    Hi Kahil,
    the plugin throws some notices. I fixed them in my installation but it might be handy for others as well.

    Notice: Trying to get property 'post' of non-object in /.../shortcodes/page_title.php on line 53
    Notice: Trying to get property 'post_title' of non-object in /.../shortcodes/page_title.php on line 53
    Notice: Trying to get property 'post' of non-object in /.../shortcodes/product_title.php on line 52
    Notice: Trying to get property 'post_title' of non-object in /.../shortcodes/product_title.php on line 52

    My solution is to simply add two returns – one in the product_title.php and one in the page_title.php.

    Add
    if(empty($product)) return;
    into the popup_elements function:

    function popup_elements()
    {
    	global $product;
    
    	if(empty($product)) return;
    
    	$prod_title = $product->post->post_title;

    Edit:
    It turns out that there are several more notices thrown on other pages. You should definitely activate low level php warnings and double-check your plugin.

    Cheers!
    Felix

    in reply to: Enfold bug with ACF+google maps field #609664

    Hi,

    there is still no working solution for us. The acf-maps-plugin produces tons of js-errors in combination with enfold.

    You can find our credentials in the private section below.

    Thanks for your support!

Viewing 8 posts - 1 through 8 (of 8 total)