Forum Replies Created
-
AuthorPosts
-
Hi,
that doesn’t work for me.
The dotted placeholder is still stuck at the left side when dragging a menu item.Best regards
FelixHi 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,
FelixHi 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!
FelixHi 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,
FelixThis reply has been marked as private.try to activate the debug mode for wordpress. That will help you to find the errors.
wp_config.php:
define('WP_DEBUG', true);
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- This reply was modified 5 years, 8 months ago by geenen-it-systeme.
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!
- This reply was modified 8 years, 7 months ago by geenen-it-systeme.
-
AuthorPosts