Title: mlaurel's Replies | WordPress.org

---

# mlaurel

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/users/mlaurel/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mlaurel/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/mlaurel/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How can I stop WP from appending a URL to a link that call a JS function?](https://wordpress.org/support/topic/how-can-i-stop-wp-from-appending-a-url-to-a-link-that-call-a-js-function/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/how-can-i-stop-wp-from-appending-a-url-to-a-link-that-call-a-js-function/#post-11887903)
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Maker by 10Web - Mobile-Friendly Drag & Drop Contact Form Builder] Can form maker be disabled for other users except admin?](https://wordpress.org/support/topic/can-form-maker-be-disabled-for-other-users-except-admin/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/can-form-maker-be-disabled-for-other-users-except-admin/#post-11846387)
 * Hi [@zhannak](https://wordpress.org/support/users/zhannak/),
 * I understand Form maker is available for admin only from the backend.
 * I’m not entirely sure what you mean by front end? Do you mean the WP dashboard?
 * What I’d like is to disallow non-administrators to add pre-made forms on their
   posts/pages.
 * Is this possible?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] new user registration for user email hedaer](https://wordpress.org/support/topic/new-user-registration-for-user-email-hedaer/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/new-user-registration-for-user-email-hedaer/#post-11824517)
 * Thank you, read the caveat 🙂 – I’ll test it out & see how it goes.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] new user registration for user email hedaer](https://wordpress.org/support/topic/new-user-registration-for-user-email-hedaer/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/new-user-registration-for-user-email-hedaer/#post-11823777)
 * Thanks [@voltronik](https://wordpress.org/support/users/voltronik/),
 * Yes, I saw the notice.
 * The reason I was asking is because anything with the header [wordpress@mydomain.com](https://wordpress.org/support/users/mlaurel/replies/wordpress@mydomain.com?output_format=md)
   gets filtered into promotion with gmail.
 * Is there anything on the back end that can be altered to change the sender?
 * If that’s in the pro version & I’m not aware of it…then it changes everything.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Need help refining added code in functions.php](https://wordpress.org/support/topic/need-help-refining-added-code-in-functions-php/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/need-help-refining-added-code-in-functions-php/#post-11809183)
 * Thanks for the help.
 * Not sure what was going on (it was probably as you explained). Ended up double
   checking code again & ran more tests. It is working properly.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How can I set a WordPress post to private by default instead of public?](https://wordpress.org/support/topic/how-can-i-set-a-wordpress-post-to-private-by-default-instead-of-public/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/how-can-i-set-a-wordpress-post-to-private-by-default-instead-of-public/#post-11798928)
 * [@nikhilbhansi](https://wordpress.org/support/users/nikhilbhansi/) Thanks for
   pointing me in the right direction.
 * did more searching & found the following:
 *     ```
       function force_type_private($post)
       {
           if ($post['post_type'] == 'post')
           {
               if ($post['post_status'] != 'trash') $post['post_status'] = 'private';
           }
           return $post;
       }
   
       add_filter('wp_insert_post_data', 'force_type_private');
       ```
   
 * Changed the boolean to:
 * `if (($post['post_type'] == 'post')&&(!current_user_can('administrator')))`
 * So only Admin can publish. Works as intended.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How can I set a WordPress post to private by default instead of public?](https://wordpress.org/support/topic/how-can-i-set-a-wordpress-post-to-private-by-default-instead-of-public/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/how-can-i-set-a-wordpress-post-to-private-by-default-instead-of-public/#post-11798891)
 * Hi [@nikhilbhansi](https://wordpress.org/support/users/nikhilbhansi/),
 * Again thanks. Unfortunately, it’s still a no go. I tried it on the sandbox as
   well- the posts are visible to the public.
 * I’m going to try to ask the theme makers to see if they can help out (using the
   free version ATM)…hopefully they’ll respond
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How can I set a WordPress post to private by default instead of public?](https://wordpress.org/support/topic/how-can-i-set-a-wordpress-post-to-private-by-default-instead-of-public/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/how-can-i-set-a-wordpress-post-to-private-by-default-instead-of-public/#post-11797636)
 * Thanks for this [@nikhilbhansi](https://wordpress.org/support/users/nikhilbhansi/)
   but it doesn’t work.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Is it possible to create a media folder for each registered user?](https://wordpress.org/support/topic/is-it-possible-to-create-a-media-folder-for-each-registered-user/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/is-it-possible-to-create-a-media-folder-for-each-registered-user/#post-11793842)
 * Thank you
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WP adds unwanted code when updating page](https://wordpress.org/support/topic/wp-adds-unwanted-code-when-updating-page/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [7 years ago](https://wordpress.org/support/topic/wp-adds-unwanted-code-when-updating-page/#post-11715343)
 * Ok, thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AddToAny Share Buttons] AddToAny](https://wordpress.org/support/topic/addtoany-2/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [7 years ago](https://wordpress.org/support/topic/addtoany-2/#post-11715325)
 * Thank you, I do use a VPN on iOS.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [can't find files on root directory](https://wordpress.org/support/topic/cant-find-files-on-root-directory/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/cant-find-files-on-root-directory/#post-3461685)
 * ok thanks
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [can't find files on root directory](https://wordpress.org/support/topic/cant-find-files-on-root-directory/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/cant-find-files-on-root-directory/#post-3461673)
 * The files are already on the server.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [scale background image & defining specific background images for different pages](https://wordpress.org/support/topic/scale-background-image-defining-specific-background-images-for-different-pages/)
 *  Thread Starter [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/scale-background-image-defining-specific-background-images-for-different-pages/#post-2528509)
 * [@insurgenesis](https://wordpress.org/support/users/insurgenesis/) – I’ve since
   abandoned that…like you said trying to find it in the css was too much of a pain
 * I did a completely different design without using any themes & just used WP as
   the ‘backbone’ for the site…
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Eleven] [Theme: Twenty Eleven] The Comment Bubble – How Do I Change It?](https://wordpress.org/support/topic/theme-twenty-eleven-the-comment-bubble-how-do-i-change-it/)
 *  [mlaurel](https://wordpress.org/support/users/mlaurel/)
 * (@mlaurel)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/theme-twenty-eleven-the-comment-bubble-how-do-i-change-it/#post-2607686)
 * well I was editing a local copy of that theme before…did you happen to edit style.
   css or move/delete the *.png by accident?

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/users/mlaurel/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mlaurel/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/mlaurel/replies/page/2/?output_format=md)