Title: kalissta's Replies | WordPress.org

---

# kalissta

  [  ](https://wordpress.org/support/users/kalissta/)

 *   [Profile](https://wordpress.org/support/users/kalissta/)
 *   [Topics Started](https://wordpress.org/support/users/kalissta/topics/)
 *   [Replies Created](https://wordpress.org/support/users/kalissta/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/kalissta/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/kalissta/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/kalissta/engagements/)
 *   [Favorites](https://wordpress.org/support/users/kalissta/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Elementor Website Builder - more than just a page builder] Remove default remote templates from the Elementor template library](https://wordpress.org/support/topic/remove-default-remote-templates-from-the-elementor-template-library/)
 *  [kalissta](https://wordpress.org/support/users/kalissta/)
 * (@kalissta)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/remove-default-remote-templates-from-the-elementor-template-library/#post-15821125)
 * Hello,
    i tested the code and it works. Thanks. /**/
 *     ```
       in your theme js:
   
       var elementorEditorCSS = top.document.createElement("link");
       elementorEditorCSS.href = "/wp-content/themes/hello-elementor-child/elementor-editor.css";
       elementorEditorCSS.rel = "stylesheet";
       elementorEditorCSS.type = "text/css";
       top.document.body.appendChild(elementorEditorCSS);
       adjust for your theme folders name
   
       in your theme folder create file elementor-editor.css:
   
       .elementor-template-library-menu-item[data-tab="templates/blocks"],
       .elementor-template-library-menu-item[data-tab="templates/pages"],
       #elementor-template-library-templates[data-template-source="remote"] {
       	display: none;
       }
       ```
   
 * /**/
 * I have the following question: can this code be bound to a specific role, for
   example ”custom-author”.
    “Administrator” should be able to see and use the templates,
   but “custom-author” should be restricted.

Viewing 1 replies (of 1 total)