Title: Missing &#8220;Edit with Elementor&#8221; SOLUTION / FIX
Last modified: October 28, 2020

---

# Missing “Edit with Elementor” SOLUTION / FIX

 *  Resolved [borisbox](https://wordpress.org/support/users/borisbox/)
 * (@borisbox)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/missing-edit-with-elementor-solution-fix/)
 * Hey!
 * I don’t use these forums much so I don’t know if this is the right spot to post
   this, but this is a temporary solution for people who’s “Edit with Elementor”
   button disappeared from the admin bar. I’ve tried every troubleshooting step 
   posted online and nothing fixed it, so I just came up with a simple solution 
   by adding my own button in there that does the job.
 * **You’ll need to add this before the closing ?> PHP tag in your functions.php**:
 *     ```
       function custom_toolbar_link($wp_admin_bar) {
       $id = get_the_ID();
       $editedurl = "https://sellerflows.com/wp-admin/post.php?post=".$id."&action=elementor";
           $args = array(
               'id' => 'elementorfix',
               'title' => 'Elementor Edit FIXED', 
               'href' => $editedurl, 
               'meta' => array(
                   'class' => 'elementorfix', 
                   'title' => 'Elementor Edit FIXED'
                   )
           );
           $wp_admin_bar->add_node($args);
       }
       add_action('admin_bar_menu', 'custom_toolbar_link', 10);
       ```
   
 * It will show up on the most left side of the admin bar and will work like the
   normal button does.
 * Thanks and I hope it comes useful! 😀

Viewing 1 replies (of 1 total)

 *  [saidaboukhadra](https://wordpress.org/support/users/saidaboukhadra/)
 * (@saidaboukhadra)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/missing-edit-with-elementor-solution-fix/#post-13886032)
 * Hello,
 * You can also use the below guide to do so 🙂
 * [https://elementor.com/help/the-edit-with-elementor-link-has-disappeared/](https://elementor.com/help/the-edit-with-elementor-link-has-disappeared/)
 * Regards,
    Said

Viewing 1 replies (of 1 total)

The topic ‘Missing “Edit with Elementor” SOLUTION / FIX’ is closed to new replies.

 * ![](https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228)
 * [Elementor Website Builder - more than just a page builder](https://wordpress.org/plugins/elementor/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/elementor/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/elementor/)
 * [Active Topics](https://wordpress.org/support/plugin/elementor/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/elementor/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/elementor/reviews/)

## Tags

 * [code snippet](https://wordpress.org/support/topic-tag/code-snippet/)
 * [edit with elementor](https://wordpress.org/support/topic-tag/edit-with-elementor/)
 * [solution](https://wordpress.org/support/topic-tag/solution/)
 * [workaround](https://wordpress.org/support/topic-tag/workaround/)

 * 1 reply
 * 2 participants
 * Last reply from: [saidaboukhadra](https://wordpress.org/support/users/saidaboukhadra/)
 * Last activity: [5 years, 4 months ago](https://wordpress.org/support/topic/missing-edit-with-elementor-solution-fix/#post-13886032)
 * Status: resolved