Niall Madhoo
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: IMAGES NOT LOADING IN SITEYou’re welcome, Aurélia!
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: Developing with WordPress
In reply to: Messy and compressed footerYou’re welcome! I’m sure you’ll be able to learn it. It’s a bit difficult at first. After some time, you’ll get used to it. Good luck!
Forum: Developing with WordPress
In reply to: Messy and compressed footerHello @miguelitolaparra,
Please use the following code:
<div class="footer__item"> <img src="#" alt="logo-footer" > <p class="footer__copy"> ®AGRICOLAPARRA © 2020<br /> Sitio creado por <a href="https://webapplicationdeveloper.es" target="_blank">WAD</a></p> <p>Este sitio esta en fase de producción</p> </div> <div class="footer__item"> <h3 class="footer__title">Menu Adicional</h3> <div class="row"> <div class="col-md-6 col-sm-6 col-xs-6"> <ul class="footer__menu"> <li><a href="https://agricolaparra.com">Home</a></li> <li><a href="https://agricolaparra.com/blog/" target="_blank">Blog</a></li> <li><a href="https://agricolaparra.com/contacto/" target="_blank">Contacto</a></li> <li><a href="https://agricolaparra.com/galeria/">Galeria</a></li> </ul> </div> <div class="col-md-6 col-sm-6 col-xs-6"> <ul class="footer__menu"> <li><a href="https://agricolaparra.com/servicios/">Servicios</a></li> <li><a href=" https://agricolaparra.com/politica-de-cookies/" target="_blank">Cookies</a></li> <li><a href="https://agricolaparra.com/politica-de-privacidad/" target=_blank">Privacidad</a></li> <li><a href="https://agricolaparra.com/aviso-legal/" target=_blank">Aviso Legal</a></li> </ul> </div> </div> </div> <div class="footer__item"> <h3 class="footer__title">Contacto</h3> <div class="company-contacts"> <address> <p> <i class="fontello-location"></i> Miguel A. Espeso Alvarez </br> Plaza del Pueblo, 10 </br> 05400 La Parra (Avila) </p> <p> <i class="fontello-phone-call"></i> <a href="tel:637486853"> 637 48 68 53</a> </p> <p> <i class="fontello-mail"></i> <a href="mailto:[email protected]">[email protected]</a> </p> </address> <div class="social-btns"> <div class="social-btns__inner"> <a class="fontello-twitter" href="#" target="_blank"></a> <a class="fontello-facebook" href="#" target="_blank"></a> <a class="fontello-linkedin-squared" href="#" target="_blank"></a> <a class="fontello-youtube" href="#" target="_blank"></a> <a class="fontello-gplus" href="#" target="_blank"></a> <a class="fontello-vimeo" href="#" target="_blank"></a> <a class="fontello-vkontakte" href="#" target="_blank"></a> <a class="fontello-instagram" href="#" target="_blank"></a> </div> </div> </div> </div>As @majaid mentioned, there is no need to use columns divs before the footer-item divs, as the theme appears to create the three columns already.
As you’ve added
<div class="col-md-6 col-lg-4">,<div class="col-md-6 col-lg-4">, and<div class="col-md-12 col-lg-4">before each footer item, they are reduced in size into even smaller columns within the three columns.If you remove the
<div class="col-md-6 col-lg-4">,<div class="col-md-6 col-lg-4">, and<div class="col-md-12 col-lg-4">, which I did in the code above, your footer should look like this:You can learn about Bootstrap columns at the following resources:
Hello again Aurélia!
WooCommerce Memberships (https://woocommerce.com/products/woocommerce-memberships/) allows customers to pause dates when combined with WooCommerce Subscriptions (https://woocommerce.com/products/woocommerce-subscriptions/).
As for changing dates, I recommend asking the respective developers whether that is possible:
- WooCommerce Memberships – https://www.skyverge.com/contact/
- WooCommerce Subscriptions – https://woocommerce.com/contact-us/
If not, they may be able to recommend you an option that offers the functionality you need or a developer to assist you in creating it.
I also suggest posting on the WooCommerce Support forum so the plugin’s developers and support community can better help you with this: https://ww.wp.xz.cn/support/plugin/woocommerce/
Best,
NiallForum: Developing with WordPress
In reply to: Editor has disappearedHello @popstarperformers!
Claire, WPBakery generates some of those features, such as the backend editor and frontend editor modes.
I recommend contacting Wedesignthemes support, as they developed the theme used on your site and may have an update for WPBakery and your theme that may fix the issue you’re having: http://support.wedesignthemes.com/. They may also be able to assist you in fixing your site if there’s something else causing this issue.
You could also try installing the following plugin, which may correct certain changes to the new version of WordPress that might affect older themes and plugins: https://ww.wp.xz.cn/plugins/enable-jquery-migrate-helper/
Forum: Developing with WordPress
In reply to: How to disable Gutenberg from loading Google fonts?Hello @xiaodada1122,
If you like solving problems with code, I recommend trying this plugin: https://ww.wp.xz.cn/plugins/disable-google-fonts/. The source code is available on GitHub for you to play with, as the plugin hasn’t been updated for a while: https://github.com/dimadin/disable-google-fonts.
You can also try using WordPress functions:
- https://developer.ww.wp.xz.cn/reference/functions/wp_deregister_style/
- https://developer.ww.wp.xz.cn/reference/functions/wp_dequeue_style/
Otherwise, you can use a premium plugin like Perfmatters: https://perfmatters.io/docs/disable-google-fonts/
Forum: Fixing WordPress
In reply to: Media Library issueHello @dudeney95,
As you’ve already followed the recommended steps for troubleshooting this issue, could you please try the following:
- Try using a different browser or incognito/private window to log in to your site and upload the image
- Check whether the file permissions are set correctly for your WordPress files and folders: https://ww.wp.xz.cn/support/article/changing-file-permissions/
Another option if you can install plugins, is to install and activate Health Check: https://ww.wp.xz.cn/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.ww.wp.xz.cn/support/handbook/appendix/troubleshooting-using-the-health-check/.
Forum: Fixing WordPress
In reply to: I cannot add a new page (white page)Hello @gunela88,
It’s possible that you have a 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://ww.wp.xz.cn/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.ww.wp.xz.cn/support/handbook/appendix/troubleshooting-using-the-health-check/.
Forum: Everything else WordPress
In reply to: How to Improve My Website SpeedHello @shariqali074 ,
The best way that I’ve found to optimize a WordPress site is to follow the recommendations made by GTMetrix: https://gtmetrix.com/reports/www.ioscraze.com/LIerVFee.
These guides are also useful for improving the performance of your site:
Forum: Developing with WordPress
In reply to: Share a page with another personHello @wesley0111,
Otherwise, every theme and builder is different and has its own custom code that will differ per site.
One way I can think of doing what you’re asking is to give each of them Author access to duplicate copies of the page that your created on your site: https://www.wpbeginner.com/beginners-guide/wordpress-user-roles-and-permissions/.
You can then use some form of URL masking or cloaking so that the URL looks like it’s hosted on their domain. This isn’t a good option, however.
If you really need this to work, they’ll have to use Divi on their own sites. You should be able to purchase some kind of developer’s license from Elegant Themes, which will allow you to legally share Divi with theme because you’d be offering them a design/development service using the theme. I am no legal expert and not familiar with Elegant Themes licensing, so I recommend contacting them to find out how if that option would work: https://www.elegantthemes.com/contact/.
Forum: Everything else WordPress
In reply to: IMAGES NOT LOADING IN SITEHello @manohar1,
Maybe there’s an issue with the SSL setup on your site. I cannot access your sites because it is giving the following error: https://really-simple-ssl.com/knowledge-base/err_ssl_unrecognized_name_alert/.
Forum: Developing with WordPress
In reply to: Banner/Seal for users to embed on their websiteHey @tleeruss,
A plugin isn’t necessary for doing this. I suggest the following:
- Create the member seal/banner in something like Google Slides, Microsoft Powerpoint, Canva, or Photoshop. Save the banner as a png image.
- Upload the seal/banner image to Imgur and set the post to private: https://help.imgur.com/hc/en-us/articles/201746817-Post-Privacy-Settings. Hosting the image here will save you bandwidth and other resources on your hosting plan and ensure that your users always have access to the image. It will also ensure that your domain is not associated with any unwanted sites that may link to the image and damage your site’s SEO or reputation.
- Create a page on your WordPress site that only your members can access, either using a password (https://www.seedprod.com/password-protect-page-wordpress/) or through a WordPress membership plugin (assuming you’re already using one
- Embed the image on this private page inside a Gutenberg HTML block by using the direct link to the image found on Imgur (e.g.,
<img src="https://i.imgur.com/XXXXXXX.png" />) - Add a Gutenberg Code block with the direct link to the image.
- Add instructions for how your members can embed that image into their own sites (something like adding the following code to their site’s HTML, such as through the Gutenberg HTML block:
<img src="https://i.imgur.com/XXXXXXX.png"/>)
Hope this helps!
Either way, you can have multiple domains/blogs with ww.wp.xz.cn and WordPress.com.
If it’s WordPress.com, it’ll likely have a “.wordpress.com” domain (e.g., catsndogs9999.wordpress.com).
If your friend is using a custom domain (e.g., catsndogs9999.com) with WordPress.com, then they would have a paid subscription. WordPress.com only allows custom domains with paid subscriptions.If it’s ww.wp.xz.cn your friend would have free or paid hosting to host a custom domain (e.g., catsndogs9999.com).
Another way to check is to use https://www.isitwp.com/. If the “Hosting Provider” is Automattic, then it’s hosted by WordPress.com
A different way to check is to add “/wp-admin” to the end of the site’s domain if it’s a custom domain (e.g., catsndogs9999.com/wp-admin).
If the “wp-admin” page looks something like this, then it’s a ww.wp.xz.cn site:



