Title: Niall Madhoo's Replies - page 27 | 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 - 391 through 405 (of 482 total)

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

 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Building a tutorial/documentation site in WP?](https://wordpress.org/support/topic/building-a-tutorial-documentation-site-in-wp/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/building-a-tutorial-documentation-site-in-wp/#post-13360372)
 * You’re welcome!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WordPress doesn’t understand the Armenian letters in the permalink](https://wordpress.org/support/topic/wordpress-doesnt-understand-the-armenian-letters-in-the-permalink/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/wordpress-doesnt-understand-the-armenian-letters-in-the-permalink/#post-13360361)
 * Okay, I guess something must have **changed** when WordPress updated.
 * If the URL is like that, then I think the pretty permalinks **aren’t** working
   or need to be reset. The **?p=11469** is the **default** WordPress permalink 
   format:
 * [https://wordpress.org/support/article/using-permalinks/#default-ugly](https://wordpress.org/support/article/using-permalinks/#default-ugly)
 * Can you please try **resetting** your permalinks inside the WordPress Admin dashboard:
   [https://www.inmotionhosting.com/support/edu/wordpress/reset-permalinks/](https://www.inmotionhosting.com/support/edu/wordpress/reset-permalinks/)?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Amazon Image Linking Breaking](https://wordpress.org/support/topic/amazon-image-linking-breaking/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/amazon-image-linking-breaking/#post-13360026)
 * Hey sanu1993, glad you managed to find the problem! This process is the standard
   method recommended on the WordPress forums and many other sites for finding out
   what’s wrong with a WordPress site.
 * You can ask for help in the Rank Math support forum found here: [https://wordpress.org/support/plugin/seo-by-rank-math/](https://wordpress.org/support/plugin/seo-by-rank-math/)
 * 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: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Image size not editable](https://wordpress.org/support/topic/image-size-not-editable/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/image-size-not-editable/#post-13359984)
 * [@bliss07](https://wordpress.org/support/users/bliss07/) that’s why I recommended
   the custom image size rather than trying to resize the image using CSS. Images**
   resize** based on the height/width ratio, which is why the image looks **squashed**
   if you change the width and **not** the height.
 * You could try **resizing** and **cropping** the image before uploading it to 
   WordPress so that you can **avoid** this problem.
 * Or you could **add** this **CSS code** in your **WordPress Admin dashboard > 
   Appearance > Customize > Additional CSS** section to **crop** the image:
 *     ```
       .page-id-2829 .wp-block-image.alignfull img, .wp-block-image.alignwide img {
           width: 600px; /* width of the placeholder */
           height: 200px; /* height of the placeholder */
           object-fit: cover; /* preserves aspect ratio while allowing the image to fit inside the container */
           object-position: 20px 10px; /* adjusts the area of the image to be cropped "left" (20px) "top" (10px) */
           margin: 0 auto; /* centers image on the page */
       }
       ```
   
 * That code will **only** work on **[https://startupify.it/tutorial-2/](https://startupify.it/tutorial-2/)**,
   which has is **“page-id-2829”** on your site. If you need it to work **sitewide**,
   you can **remove** the `.page-id-2829` from the code.
 * You can **read more** about the **“object-fit”** property here: [https://www.digitalocean.com/community/tutorials/css-cropping-images-object-fit](https://www.digitalocean.com/community/tutorials/css-cropping-images-object-fit)
 * Again, the image **still might** need to be a certain size and aspect ratio for
   this property to work the way you need it to work.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [How to migrate data from custom site to WordPress?](https://wordpress.org/support/topic/how-to-migrate-data-from-custom-site-to-wordpress/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/how-to-migrate-data-from-custom-site-to-wordpress/#post-13359871)
 * Hey yummp,
 * I haven’t tried it myself but I’ve come across a few methods in the past that
   might work for you:
    - [https://www.wpallimport.com/](https://www.wpallimport.com/) – you can import
      XML and CSV files using this, and it apparently supports any file structure
    - [https://zapier.com/apps/mongodb/](https://zapier.com/apps/mongodb/) –
    - [https://tray.io/connectors/mongodb-wordpress-integrations](https://tray.io/connectors/mongodb-wordpress-integrations)
 * Someone who has more experience with MongoDB may be able to help you further.
   Maybe you could try the [MongoDB forums](https://developer.mongodb.com/community/forums/)
   or [Stack Overflow](https://stackoverflow.com/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Login Problem](https://wordpress.org/support/topic/login-problem-158/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/login-problem-158/#post-13357818)
 * Hi Luca,
 * Try [manually resetting your plugins](https://wordpress.org/support/article/faq-troubleshooting/#how-to-deactivate-all-plugins-when-not-able-to-access-the-administrative-menus)(
   no Dashboard access required). If that resolves the issue, reactivate each one
   individually until you find the cause. I think it’s probably to do with 2-factor
   verification plugin you set up.
 * If that does not resolve the issue, access your server via [SFTP or FTP](https://wordpress.org/support/article/ftp-clients/),
   or a file manager in your hosting account’s control panel, navigate to `/wp-content/
   themes/` and rename the directory of your currently active theme. This will force
   the default theme to activate and hopefully rule-out a theme-specific issue (
   theme functions can interfere like plugins).
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Intermittent success with embedding posts](https://wordpress.org/support/topic/intermittent-success-with-embedding-posts/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/intermittent-success-with-embedding-posts/#post-13357800)
 * Hey dmdefed,
 * If you **paste** the embed code **directly** into the WordPress editor, it can**
   sometimes** cause **problems**.
 * Instead, could you please try **adding** the embed code using a **custom HTML
   block** by **following** this guide: [https://wp-tutoring.com/adding-html-to-gutenberg-wordpress-5-0/](https://wp-tutoring.com/adding-html-to-gutenberg-wordpress-5-0/)?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Image size not editable](https://wordpress.org/support/topic/image-size-not-editable/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/image-size-not-editable/#post-13357721)
 * Hey Bliss07,
 * You can create and use custom image sizes by following this guide: [https://premium.wpmudev.org/blog/wordpress-image-sizes/](https://premium.wpmudev.org/blog/wordpress-image-sizes/).
   It will allow you to create the width and height you need for the image and select
   that size in the editor.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Building a tutorial/documentation site in WP?](https://wordpress.org/support/topic/building-a-tutorial-documentation-site-in-wp/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/building-a-tutorial-documentation-site-in-wp/#post-13357652)
 * Hey skromta,
 * What you need is a **learning management system (LMS)**. There are several options
   for **WordPress** LMS themes and plugins:
    - [https://themeforest.net/category/wordpress?tags=lms](https://themeforest.net/category/wordpress?tags=lms)
    - [https://blog.hubspot.com/website/best-wordpress-themes-tutorials](https://blog.hubspot.com/website/best-wordpress-themes-tutorials)
    - [https://wordpress.org/plugins/learnpress/](https://wordpress.org/plugins/learnpress/)
    - [https://www.wpbeginner.com/plugins/best-wordpress-lms-plugins-compared/](https://www.wpbeginner.com/plugins/best-wordpress-lms-plugins-compared/)
 * There are also **non-WordPress** options that were **designed** specifically 
   for this purpose. If you’re looking for a **free and open-source option**, [**Moodle**](https://moodle.org/)
   is the **equivalent** of WordPress in the LMS space. Otherwise, there’s a Wikipedia**
   list** of LMS systems found here: [https://en.wikipedia.org/wiki/List_of_learning_management_systems](https://en.wikipedia.org/wiki/List_of_learning_management_systems)
    -  This reply was modified 5 years, 10 months ago by [Niall Madhoo](https://wordpress.org/support/users/nm1com/).
      Reason: changed https://themeforest.net/category/wordpress?tags=tutorials 
      to https://themeforest.net/category/wordpress?tags=lms
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WordPress doesn’t understand the Armenian letters in the permalink](https://wordpress.org/support/topic/wordpress-doesnt-understand-the-armenian-letters-in-the-permalink/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/wordpress-doesnt-understand-the-armenian-letters-in-the-permalink/#post-13357580)
 * Okay, in that case there may be something going on with your **server** setup.
 * I noticed that your site runs on **NGINX**. I wonder whether that might have 
   something to do with the permalinks when WordPress **updated**. The Pretty Permalinks
   functionality works [**differently**](https://wordpress.org/support/article/nginx/)
   with NGINX compared to the more common Apache.
 * I suggest **contacting** your web host to see if they can help you **fix** this
   problem.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Amazon Image Linking Breaking](https://wordpress.org/support/topic/amazon-image-linking-breaking/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/amazon-image-linking-breaking/#post-13357527)
 * The links are broken on my Brave browser too.
 * I think this may be 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 them 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 some additional feature under create a new menu position Tools > 
   Site Health. On its troubleshooting tab, you can Enable Troubleshooting Mode.
   This 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**. This 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: [Urgent: My website url is redirecting to other url](https://wordpress.org/support/topic/urgent-my-website-url-is-redirecting-to-other-url-2/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/urgent-my-website-url-is-redirecting-to-other-url-2/#post-13357487)
 * You’re welcome! Glad you managed to fix it!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Amazon Image Linking Breaking](https://wordpress.org/support/topic/amazon-image-linking-breaking/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/amazon-image-linking-breaking/#post-13357032)
 * Hello sanu1993,
 * There’s an SSL error on those links. For example, under the first image: [https://ir-in.amazon-adsystem.com/e/ir?t=moneypremier-21&language=en_IN&l=li3&o=31&a=1612680194](https://ir-in.amazon-adsystem.com/e/ir?t=moneypremier-21&language=en_IN&l=li3&o=31&a=1612680194).
 * And there are also some JavaScript errors on your site, which might be affecting
   your site.
 * I suggest:
    - Copy/pasting the Amazon affiliate links back into your site, or however you
      added them to your site originally
    - If that doesn’t work, I suggest contacting Amazon Associate’s Support for 
      further help: [https://affiliate-program.amazon.com/contact](https://affiliate-program.amazon.com/contact)
 *   Forum: [Requests and Feedback](https://wordpress.org/support/forum/requests-and-feedback/)
   
   In reply to: [MP3 Player stops on mobile when screen closed](https://wordpress.org/support/topic/mp3-player-stops-on-mobile-when-screen-closed/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/mp3-player-stops-on-mobile-when-screen-closed/#post-13356899)
 * Hi archfiendmedia,
 * If you use a commercial theme or plugin and need support, please go to their 
   official support channel found here:
 * [https://themeforest.net/item/vice-music-band-dj-and-radio-wordpress-theme/10067870/support](https://themeforest.net/item/vice-music-band-dj-and-radio-wordpress-theme/10067870/support)
 * QantumThemes is responsible for supporting their commercial product. They should
   be able to help you.
    -  This reply was modified 5 years, 10 months ago by [Niall Madhoo](https://wordpress.org/support/users/nm1com/).
      Reason: theme is released under GPL
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Font dropdown menu plugin](https://wordpress.org/support/topic/font-dropdown-menu-plugin/)
 *  [Niall Madhoo](https://wordpress.org/support/users/nm1com/)
 * (@nm1com)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/font-dropdown-menu-plugin/#post-13356865)
 * Hello roccatjumpie,
 * Based on what you’re saying, you’ll probably need a **premium** plugin for that
   kind of functionality. Maybe someone else knows of a free plugin?
 * If you don’t mind **buying** a commercial plugin, here are a few **options**:
    - [https://pluginrepublic.com/woocommerce-stickers-product/](https://pluginrepublic.com/woocommerce-stickers-product/)–
      this plugin seems **exactly** like what you’re looking for!
    - [https://www.themehigh.com/product/woocommerce-extra-product-options/?utm_source=wordpress&utm_medium=referral&utm_content=tracking](https://www.themehigh.com/product/woocommerce-extra-product-options/?utm_source=wordpress&utm_medium=referral&utm_content=tracking)–
      the premium version of WooCommerce [Extra Product Options](https://wordpress.org/plugins/woo-extra-product-options/)
      because the free version doesn’t have the functionality you need
    - [https://acowebs.com/woo-custom-product-addons/?ref=wcpa-readme](https://acowebs.com/woo-custom-product-addons/?ref=wcpa-readme)
 * You need a plugin that offers **conditional logic** or **dynamic functionality**
   for custom fields. The plugins in the list above offer this functionality.

Viewing 15 replies - 391 through 405 (of 482 total)

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