Title: Niall Madhoo's Replies - page 4 | 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 - 46 through 60 (of 482 total)

[←](https://wordpress.org/support/users/nm1com/replies/page/3/?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)
4 [5](https://wordpress.org/support/users/nm1com/replies/page/5/?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/5/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Featured Images uploading to gallery but not able to be assigned to guides.](https://wordpress.org/support/topic/featured-images-uploading-to-gallery-but-not-able-to-be-assigned-to-guides/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/featured-images-uploading-to-gallery-but-not-able-to-be-assigned-to-guides/#post-13585363)
 * Entrada is causing JavaScript errors on your site:
    [
 * These errors are likely the reason why adding an image gallery does not work 
   correctly. That is why you will need to visit the links above to get support 
   for your theme.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [facebook for woocommerce causing error](https://wordpress.org/support/topic/facebook-for-woocommerce-causing-error/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/facebook-for-woocommerce-causing-error/#post-13585335)
 * Hello [@myfavecase](https://wordpress.org/support/users/myfavecase/),
 * This error seems **common with the latest version (2.1.0)** of Facebook for WooCommerce:
   [https://wordpress.org/support/plugin/facebook-for-woocommerce/reviews/?filter=1](https://wordpress.org/support/plugin/facebook-for-woocommerce/reviews/?filter=1).
 * Two users on [https://wordpress.org/support/topic/new-update-breaks-websites/](https://wordpress.org/support/topic/new-update-breaks-websites/)
   suggested using **PHP 7.3 or higher**.
 * I recommend **waiting** for the plugin’s developers to fix this problem rather
   than trying to change your server configuration. These **changes may cause issues**
   with other **plugins** or your **theme**.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Add specific code in a specific page on WordPress](https://wordpress.org/support/topic/add-specific-code-in-a-specific-page-on-wordpress/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/add-specific-code-in-a-specific-page-on-wordpress/#post-13581079)
 * Hello [@ivangfal2020](https://wordpress.org/support/users/ivangfal2020/),
 * First, I recommend using the **Code Snippets plugin** to add the code: [https://wordpress.org/plugins/code-snippets/](https://wordpress.org/plugins/code-snippets/).
   If you add the Google Tag to your **theme’s functions.php** file and **change
   your theme**, the **tag** will also be **removed**. The Code Snippets plugin 
   will also make it **easier to manage tags like these**, as you may need to use
   them on a different page or post later on.
 * Please use the following code:
 *     ```
       /* Add Google Tag to Thank You Page (post=944) */
       add_action('wp_head', 'thankyou_tag');
       function thankyou_tag(){
       if(is_single( '944' )) {  ?>
       PASTE GOOGLE TAG CODE HERE
       <?php  }
       };
       ```
   
 * It’s possible that your **Thank You page** is a **custom post type**, in which
   case you will need to use the following code (it uses `is_singular` rather than`
   is_single`):
 *     ```
       /* Add Google Tag to Thank You Page (post=944) */
       add_action('wp_head', 'thankyou_tag');
       function thankyou_tag(){
       if(is_singular( '944' )) {  ?>
       PASTE GOOGLE TAG CODE HERE
       <?php  }
       };
       ```
   
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Menu button doesn’t work](https://wordpress.org/support/topic/menu-button-doesnt-work-4/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/menu-button-doesnt-work-4/#post-13576401)
 * Thanks and you’re very welcome, Mattias! Glad you managed to fix menu button.
   🙂
 * You should be able to activate the Performance Cache plugin again if you haven’t
   already. The plugin will probably build a new cache and allow the button to work
   while speeding up your site. You can always disable it again if it doesn’t work.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [sending hidden keywords](https://wordpress.org/support/topic/sending-hidden-keywords/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/sending-hidden-keywords/#post-13576374)
 * Hello [@nataliactivex](https://wordpress.org/support/users/nataliactivex/),
 * Have you tried the **steps** from this guide here on the forums: [https://wordpress.org/support/article/faq-my-site-was-hacked/](https://wordpress.org/support/article/faq-my-site-was-hacked/)?
 * You may also want to try asking on the **Google Webmasters Help Community forum**:
   [https://support.google.com/webmasters/community?hl=en](https://support.google.com/webmasters/community?hl=en).
 * Do you know whether Google **indexed** your site **after** the hack?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Whole WordPress Appears Zoomed In](https://wordpress.org/support/topic/whole-wordpress-appears-zoomed-in/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/whole-wordpress-appears-zoomed-in/#post-13576358)
 * Hello [@ynitishreddy96](https://wordpress.org/support/users/ynitishreddy96/),
 * Both sites look the same in my browser.
 * Have you tried **zooming out** using your web browser? You can press **CTRL+0
   on Windows/Linux** or **CMD+0 on a Mac** to get your browser to reset to 100%(
   the default) zoom size.
 * That might explain why the front end and admin appear zoomed in.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Featured Images uploading to gallery but not able to be assigned to guides.](https://wordpress.org/support/topic/featured-images-uploading-to-gallery-but-not-able-to-be-assigned-to-guides/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/featured-images-uploading-to-gallery-but-not-able-to-be-assigned-to-guides/#post-13576351)
 * Hello [@koukouroukou](https://wordpress.org/support/users/koukouroukou/),
 * If you use a **commercial** theme like **[Entrada](https://themeforest.net/item/tour-booking-adventure-tour-wordpress-theme-entrada/16867379)**
   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/tour-booking-adventure-tour-wordpress-theme-entrada/16867379/support](https://themeforest.net/item/tour-booking-adventure-tour-wordpress-theme-entrada/16867379/support)
 * Forum volunteers are also **not** given access to commercial products like **
   Entrada**, 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 **waituk**. They are **responsible** for supporting their
   commercial product.
 * **Commercial products are not supported in these forums: [https://make.wordpress.org/support/trouble/section-1-getting-started/what-is-not-supported/](https://make.wordpress.org/support/trouble/section-1-getting-started/what-is-not-supported/).**
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Menu button doesn’t work](https://wordpress.org/support/topic/menu-button-doesnt-work-4/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/menu-button-doesnt-work-4/#post-13571440)
 * Hi Mattias,
 * You’re welcome.
 * The plugin is not showing up on your site. If you have some kind of caching enabled,
   please try deleting it.
 * Otherwise, you will need to contact you theme’s developer for assistance: [https://support.stylemixthemes.com/](https://support.stylemixthemes.com/).
 * If you use a **commercial** theme like **[Cinderella](http://cinderella.stylemixthemes.com/)**
   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://support.stylemixthemes.com/](https://support.stylemixthemes.com/)
 * Forum volunteers are also **not** given access to commercial products like **
   Cinderella**, 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 **StylemixThemes**. They are **responsible** for supporting
   their commercial product.
 * **Commercial products are not supported in these forums: [https://make.wordpress.org/support/trouble/section-1-getting-started/what-is-not-supported/](https://make.wordpress.org/support/trouble/section-1-getting-started/what-is-not-supported/).**
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [The menu button not working on mobile appearance of website.](https://wordpress.org/support/topic/the-menu-button-not-working-on-mobile-appearance-of-website/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/the-menu-button-not-working-on-mobile-appearance-of-website/#post-13571391)
 * You’re very welcome!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [White/Blank space above site content](https://wordpress.org/support/topic/white-blank-space-above-site-content/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/white-blank-space-above-site-content/#post-13568889)
 * Hi [@suvamss](https://wordpress.org/support/users/suvamss/),
 * As [@samuelonoja](https://wordpress.org/support/users/samuelonoja/) mentioned,
   please **add** the following **CSS code** in the **Appearance > Customize > Additional
   CSS** section of your **WordPress Admin dashboard**:
 *     ```
       .wt-headerelevenb {
       	margin-bottom: -131px;
       }
   
       .wt-logo {
       	margin-top: 0;
       }
       ```
   
 * You will need to adjust the `margin-bottom` of the `.wt-headerelevenb` element,
   rather than `margin-top`.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [The menu button not working on mobile appearance of website.](https://wordpress.org/support/topic/the-menu-button-not-working-on-mobile-appearance-of-website/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/the-menu-button-not-working-on-mobile-appearance-of-website/#post-13566186)
 * You’re very welcome!
 * I recommend asking for **help** at [https://wordpress.org/support/plugin/litespeed-cache/](https://wordpress.org/support/plugin/litespeed-cache/)
   so the plugin’s **developers** and **support community** can help you with this.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [No products in the basket](https://wordpress.org/support/topic/no-products-in-the-basket/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/no-products-in-the-basket/#post-13561056)
 * You’re very welcome!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [No products in the basket](https://wordpress.org/support/topic/no-products-in-the-basket/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/no-products-in-the-basket/#post-13558207)
 * Hello [@visualalchemy](https://wordpress.org/support/users/visualalchemy/),
 * Have you followed this **official WooCommerce guide** to **troubleshoot** your
   problem: [https://docs.woocommerce.com/document/woocommerce-self-service-guide/](https://docs.woocommerce.com/document/woocommerce-self-service-guide/)?
 * Otherwise, I recommend **asking** at [https://wordpress.org/support/plugin/woocommerce/](https://wordpress.org/support/plugin/woocommerce/)
   so the WooCommerce **developers** and support **community** can help you with
   this.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [changing background image on pages](https://wordpress.org/support/topic/changing-background-image-on-pages/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/changing-background-image-on-pages/#post-13558173)
 * Hello [@dreadstar](https://wordpress.org/support/users/dreadstar/),
 * Could you please **share your site’s URL**? We need to view your site’s code 
   in our web browsers so we can offer you better assistance with this issue.
 * The CSS code you provided seems okay. Here are **three likely causes** for why
   it isn’t working:
    - `.page-id-3944` **may not be the correct page ID** for the page you’re trying
      to edit. You can find the page ID in the **URL** of the page you’re trying
      to edit inside the **WordPress Admin dashboard**. Look for `post.php?=3944`
      to make sure you’re using the correct ID. If not, change the **3944** in `.
      page-id-3944` to the correct ID.
    - The **image URL may be incorrect** depending on how the **URLs** are set up
      on your site and **where** you’ve added this CSS code.
    - There may be **another element above the background image** that blocks it
      from being seen. You could try adding `z-index: 9999;` to the CSS code you
      provided, which should ensure that the background image **displays above**
      the other content. This method **may not work** depending on how the rest 
      of the elements are set up.
 * If **none of those steps work**, we can **assist** you further if you provide
   your **site’s URL**.
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [WordPress File not writable](https://wordpress.org/support/topic/wordpress-file-not-writable/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/wordpress-file-not-writable/#post-13556882)
 * Hello [@sachin0a1](https://wordpress.org/support/users/sachin0a1/),
 * I think you may have already followed the **steps** found here for **changing
   WordPress file permissions**: [https://wordpress.org/support/article/changing-file-permissions/](https://wordpress.org/support/article/changing-file-permissions/).
 * Some **security plugins ****monitor** your file permissions and **secure** your
   files and folders **automatically**. If you have a plugin like that, I recommend**
   disabling it** and **testing** whether you can change file permissions permanently.
 * If that **doesn’t work**, 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/).
 * If **none** of the steps above help you, I recommend **contacting your web host**
   to help you with this issue. There may be some issue on your server that needs
   to be fixed.

Viewing 15 replies - 46 through 60 (of 482 total)

[←](https://wordpress.org/support/users/nm1com/replies/page/3/?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)
4 [5](https://wordpress.org/support/users/nm1com/replies/page/5/?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/5/?output_format=md)