jemeeroy
Forum Replies Created
-
Hello @boybawang
Thank you so much for letting us know the issue. I just debugged and find out the problem. Tomorrow we will try to release a new update where we will fix the problem.
Thanks again and have a good day 🙂
Our team is familiar with the issue and it’s already resolved in our beta version. Please allow us few more days to test the final version and release a new update.
For now, you can just navigate to the admin bar editor and hide this option. But in the upcoming update this issue will be resolved.
Thank you
Hello @danieldhv
We have noted your issues and yes we are working on it to release a new update. Hopefully within a few days we will release a new update with the solution of your issue plus make it competable with latest WordPress admin bar.
Thanks for notifying us. I am really sorry for responding your late. But we have already started working on the issues.
Thank you
Hello @jhooper42
So sorry for the late response. We are working on this issue in our local development of WP Adminify. You will get the fixing in our upcoming update.
Thank you
Hello @danieldhv
Thank you for confirming it. If you love the plugin, please rate us – your rating means a lot to us.
Thank You
Hello @mehrazmorshed
You are most welcome. Thanks for using our Admin Bar Editor plugin. If you love the plugin please rate us, your rating means a lot to our team.
Thanks again and feel free to create support topic anytime in the future whenever you face any issue.
Hello @wocmultimedia
Thank you so much for updating. If you love our Admin Bar Editor plugin, please rate us and your rating means a lot to our team.
Feel free to get in touch if you face any other issues in the future.
Thank You
Hello @ll09
We unable to generate the issue. Maybe it’s elementor issue and it’s already fixed. If you still face any issues please feel free to create support topic plus share screenshot or video with loom app and we will assist you.
Thank you
Hello @paulucky
Please update Master Addons plugin and it will resolve the timeline issue. We have fixed it in our latest version. If you still face any other problem please feel free to create ticket.
Thank You
Hello @ivanivengo
So sorry for the late response. We have released a new update and fixed this external link issue for image hover effects.
Please update the plugin and it will be resolved.
Thank You
Forum: Fixing WordPress
In reply to: banned from site at admin loginAs your admin account has been denied you have to create another admin account via FTP. Follow the following code for creating another admin account by function.php file of you theme.
function jeweltheme_user_admin_account(){ $username = 'UserName'; $password = 'UserAccountPassword'; $email = '[email protected]'; if ( !username_exists( $username ) && !email_exists( $email ) ) { $user_id = wp_create_user( $username, $password, $email ); $username = new WP_User( $user_id ); $username->set_role( 'administrator' ); } } add_action('init','jeweltheme_user_admin_account');Read Create User Admin account by FTP Post for details.