Title: Niall Madhoo's Replies - page 17 | WordPress.org

---

# Niall Madhoo

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 241 through 255 (of 482 total)

[←](https://wordpress.org/support/users/nm1com/replies/page/16/?output_format=md)
[1](https://wordpress.org/support/users/nm1com/replies/?output_format=md) [2](https://wordpress.org/support/users/nm1com/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/nm1com/replies/page/3/?output_format=md)…
[16](https://wordpress.org/support/users/nm1com/replies/page/16/?output_format=md)
17 [18](https://wordpress.org/support/users/nm1com/replies/page/18/?output_format=md)…
[31](https://wordpress.org/support/users/nm1com/replies/page/31/?output_format=md)
[32](https://wordpress.org/support/users/nm1com/replies/page/32/?output_format=md)
[33](https://wordpress.org/support/users/nm1com/replies/page/33/?output_format=md)
[→](https://wordpress.org/support/users/nm1com/replies/page/18/?output_format=md)

 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Password changed email not working](https://wordpress.org/support/topic/password-changed-email-not-working/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/password-changed-email-not-working/#post-13448479)
 * Hello [@gabbianella](https://wordpress.org/support/users/gabbianella/),
 * There can sometimes be issues with **sending** emails from your WordPress site**
   depending** on your **web host**.
 * I had a similar **issue** with a plugin **not** sending emails **until** I installed
   and set up the WP Mail SMTP plugin: [https://wordpress.org/plugins/wp-mail-smtp/](https://wordpress.org/plugins/wp-mail-smtp/).
   I **recommend** using this **plugin** to see if that **fixes** your problem.
 * If **not**, there may be a **plugin** or **theme** conflict **causing** this 
   behavior.
 * Please attempt to **disable** all plugins, and use one of the **default** (Twenty*)
   themes. If the problem goes **away**, enable the **plugins** one by one to identify
   the **source** of your troubles.
 * If you can install plugins, **install** and **activate** **Health Check**: [https://wordpress.org/plugins/health-check/](https://wordpress.org/plugins/health-check/)
   
   It will add a new **feature** under Tools > Site Health. On its **Troubleshooting**
   tab, you can **Enable Troubleshooting Mode**. This mode will **disable** all 
   plugins, **switch** to a standard WordPress theme (if available), **allow** you
   to turn your plugins **on and off**, and **switch** between themes, **without**
   affecting normal visitors to your site. **Following** these **steps** allows 
   you to **test** for various **compatibility** issues.
 * There’s a more **detailed** description about how to use the **Health Check**
   plugin and its **Troubleshooting Mode** at [https://make.wordpress.org/support/handbook/appendix/troubleshooting-using-the-health-check/](https://make.wordpress.org/support/handbook/appendix/troubleshooting-using-the-health-check/).
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Hiding Categories from Widget](https://wordpress.org/support/topic/hiding-categories-from-widget/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/hiding-categories-from-widget/#post-13447218)
 * You’re welcome!
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Hiding Categories from Widget](https://wordpress.org/support/topic/hiding-categories-from-widget/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/hiding-categories-from-widget/#post-13445532)
 * Try this **code** for the **tags**:
 *     ```
       // Omit Specific Items from Tag Widget
       function custom_tags_widget($args) {
       	$exclude = "43"; // Tag ID/s to be omitted separated by comma/s
       	$args["exclude"] = $exclude;
       	return $args;
       }
       add_filter("widget_tag_cloud_args","custom_tags_widget");
       ```
   
 * I’m pretty certain that the **Nectar** widgets are created by your **theme** 
   or a **plugin**. You’ll need to **contact** the **developers** to find out **
   how** to **remove** whatever you need to remove from those widgets.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [IMAGES NOT LOADING IN SITE](https://wordpress.org/support/topic/images-not-loading-in-site/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/images-not-loading-in-site/#post-13445368)
 * Hello! I found the problem. The **link** provided in your original post is **
   [https://www.cyberspaceits.com/](https://www.cyberspaceits.com/)**. I Googled
   the site and it shows **[https://cyberspaceits.com/](https://cyberspaceits.com/)**(
   the same URL but without the www.).
 * Please add the following **code** to the **.htaccess** file in your domain’s **
   root** folder:
 *     ```
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteCond %{HTTP_HOST} ^www\.cyberspaceits.com\.com [NC]
       RewriteRule ^(.*)$ http://cyberspaceits.com.com/$1 [L,R=301]
       </IfModule>
       ```
   
 * That should **redirect** all `https://www.cyberspaceits.com/` requests to `https://
   cyberspaceits.com/`.
 * As for the **image problem**, I cannot seem to **replicate** this issue or I’m
   not **seeing** where this problem happens.
 * It’s **possible** that you have a **plugin** or **theme** **conflict**.
 * Please attempt to **disable** all plugins, and use one of the **default** (Twenty*)
   themes. If the problem goes **away**, enable the **plugins** one by one to identify
   the **source** of your troubles.
 * If you can install plugins, **install** and **activate** **Health Check**: [https://wordpress.org/plugins/health-check/](https://wordpress.org/plugins/health-check/)
   
   It will add a new **feature** under Tools > Site Health. On its **Troubleshooting**
   tab, you can **Enable Troubleshooting Mode**. This mode will **disable** all 
   plugins, **switch** to a standard WordPress theme (if available), **allow** you
   to turn your plugins **on and off**, and **switch** between themes, **without**
   affecting normal visitors to your site. **Following** these **steps** allows 
   you to **test** for various **compatibility** issues.
 * There’s a more **detailed** description about how to use the **Health Check**
   plugin and its **Troubleshooting Mode** at [https://make.wordpress.org/support/handbook/appendix/troubleshooting-using-the-health-check/](https://make.wordpress.org/support/handbook/appendix/troubleshooting-using-the-health-check/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Mobile usability issue](https://wordpress.org/support/topic/mobile-usability-issue-3/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/mobile-usability-issue-3/#post-13445304)
 * Hello [@beingtechguy](https://wordpress.org/support/users/beingtechguy/),
 * Could you please explain what issue you keep having?
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [5.5 MacOS Catalina install – error establishing database connection](https://wordpress.org/support/topic/5-5-macos-catalina-install-error-establishing-database-connection/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/5-5-macos-catalina-install-error-establishing-database-connection/#post-13444442)
 * You’re welcome. Glad it’s fixed now.
 * If your question has been answered, it would be great if you would mark this 
   topic as resolved in the sidebar. This helps the forum’s volunteers find the 
   topics that still need attention and more people will get helped, possibly like
   you did.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Can I Use Canonical Tag?](https://wordpress.org/support/topic/can-i-use-canonical-tag/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/can-i-use-canonical-tag/#post-13444413)
 * Hello [@sergi12](https://wordpress.org/support/users/sergi12/),
 * This is more of an **SEO** and **Google** question rather than a **WordPress**
   question. I recommend **asking** the same question on **Google’s Search Console
   Community**: [https://support.google.com/webmasters/community?hl=en](https://support.google.com/webmasters/community?hl=en).
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [5.5 MacOS Catalina install – error establishing database connection](https://wordpress.org/support/topic/5-5-macos-catalina-install-error-establishing-database-connection/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/5-5-macos-catalina-install-error-establishing-database-connection/#post-13443841)
 * Hello [@jredmond](https://wordpress.org/support/users/jredmond/),
 * Could you please share the details of the **error** page or any **error logs**
   you might have?
 * In your **wp-config.php** file, is your **DB_HOST** set to **localhost** or the**
   hostname** reported by MySQL?
 *     ```
       /** MySQL hostname */
       define( 'DB_HOST', 'localhost' );
       ```
   
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Hiding Categories from Widget](https://wordpress.org/support/topic/hiding-categories-from-widget/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/hiding-categories-from-widget/#post-13443778)
 * Hi [@tetra84](https://wordpress.org/support/users/tetra84/),
 * Paul, the code you shared **works** for the **default** Categories Widget. If
   you’ve **set** the Categories Widget to **“Display as dropdown,”** there’s a 
   slightly **different filter** you’ll need to use:
 *     ```
       // Omit Specific Categories from Category Widget
       function custom_category_widget($args) {
       	$exclude = "43"; // Category ID/s to be omitted separated by comma/s
       	$args["exclude"] = $exclude;
       	return $args;
       }
       add_filter("widget_categories_dropdown_args","custom_category_widget");
       ```
   
 * `widget_categories_dropdown_args` needs to be used **rather** than `widget_categories_args`.
 * If that **doesn’t** work, there may be a **plugin** or **theme** conflict that’s**
   preventing** the code from working.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Classic Editor: “Add Media” Button Not Working From Add Post/Add Product Page](https://wordpress.org/support/topic/classic-editor-add-media-button-not-working-from-add-post-add-product-page/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/classic-editor-add-media-button-not-working-from-add-post-add-product-page/#post-13441674)
 * 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Upload Theme button broken](https://wordpress.org/support/topic/upload-theme-button-broken/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/upload-theme-button-broken/#post-13441671)
 * You’re welcome! The same to you. Glad the solution worked.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Chromebook Incompatibility](https://wordpress.org/support/topic/chromebook-incompatibility-2/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/chromebook-incompatibility-2/#post-13441667)
 * You’re welcome, Chris!
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Media Upload Subfolder and URL Path](https://wordpress.org/support/topic/media-upload-subfolder-and-url-path/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/media-upload-subfolder-and-url-path/#post-13440163)
 * I tested some that claim or imply that they change URLs. And you’re right, they
   don’t change the URLs! Most appear to have almost identical interfaces, so I’m
   guessing they’re derived from a single source. Another just overloaded the resources
   on my shared hosting account!
 * In general, there’s little need for changing the URLs of static content like 
   images and documents in WordPress, which is why it’s hard to find this functionality.
 * I recommend using an open source document management system or file management
   system if you’re in need of hosting a document repository. Here’s a list I’ve
   tested or come across:
    - [https://nextcloud.com/install/#instructions-server](https://nextcloud.com/install/#instructions-server)
    - [https://owncloud.com/download-server/](https://owncloud.com/download-server/)
    - [https://www.alfresco.com/ecm-software/alfresco-community-editions](https://www.alfresco.com/ecm-software/alfresco-community-editions)
    - [https://www.seeddms.org/index.php?id=2](https://www.seeddms.org/index.php?id=2)
    - [https://www.opendocman.com/](https://www.opendocman.com/)
    - [https://www.mayan-edms.com/](https://www.mayan-edms.com/)
 * There are also free but not open source options you could use.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Classic Editor: “Add Media” Button Not Working From Add Post/Add Product Page](https://wordpress.org/support/topic/classic-editor-add-media-button-not-working-from-add-post-add-product-page/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/classic-editor-add-media-button-not-working-from-add-post-add-product-page/#post-13439932)
 * You’re very welcome! Glad your site works and that you have some time to update
   your theme.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [accordion collapsible menu for category sidebar](https://wordpress.org/support/topic/accordion-collapsible-menu-for-category-sidebar/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/accordion-collapsible-menu-for-category-sidebar/#post-13439898)
 * Hello [@sibbirius](https://wordpress.org/support/users/sibbirius/),
 * If you use a commercial theme like [BeTheme](https://themeforest.net/item/betheme-responsive-multipurpose-wordpress-theme/7758048/)
   and need support, please go to their official support channel. In order to be
   good stewards of the WordPress community, and encourage innovation and progress,
   we feel it’s important to direct people to those official locations. You can 
   find support for it here: [https://themeforest.net/item/betheme-responsive-multipurpose-wordpress-theme/7758048/support](https://themeforest.net/item/betheme-responsive-multipurpose-wordpress-theme/7758048/support).
 * Forum volunteers are also not given access to commercial products like BeTheme,
   so they would not know why it is not working properly. This is one other reason
   why volunteers forward you to the commercial product’s vendors, in this case 
   Muffin group. They are responsible for supporting their commercial product.

Viewing 15 replies - 241 through 255 (of 482 total)

[←](https://wordpress.org/support/users/nm1com/replies/page/16/?output_format=md)
[1](https://wordpress.org/support/users/nm1com/replies/?output_format=md) [2](https://wordpress.org/support/users/nm1com/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/nm1com/replies/page/3/?output_format=md)…
[16](https://wordpress.org/support/users/nm1com/replies/page/16/?output_format=md)
17 [18](https://wordpress.org/support/users/nm1com/replies/page/18/?output_format=md)…
[31](https://wordpress.org/support/users/nm1com/replies/page/31/?output_format=md)
[32](https://wordpress.org/support/users/nm1com/replies/page/32/?output_format=md)
[33](https://wordpress.org/support/users/nm1com/replies/page/33/?output_format=md)
[→](https://wordpress.org/support/users/nm1com/replies/page/18/?output_format=md)