Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
WordPress Q & A platform!
How to fix error 503 when I install WooCommerce on my website?
Hi @rogelio_wp, Error 503 is a server-side error that indicates that the server cannot handle the request due to temporary overload or maintenance. This error can occur when there is a large influx of traffic to your website or when the server is undergoing maintenance or updates. To fix this error,Read more
Hi rogelio_wp,
Error 503 is a server-side error that indicates that the server cannot handle the request due to temporary overload or maintenance. This error can occur when there is a large influx of traffic to your website or when the server is undergoing maintenance or updates.
To fix this error, you can try the following steps:
define(‘WP_MEMORY_LIMIT’, ‘256M’);
In general, it is important to regularly maintain and update your WordPress installation, including the core software, themes, and plugins, to prevent errors like this from occurring.
See lessHow to remove malware on my WordPress website? – [email protected] (administrator account)
Hi, I just experience this on my sites as well. I have 2 that's infected with this. The weird thing is that in WP-Cerber log, the account is created by my main Administrator account. So, it's hard to block it as it seems done by the user account. I have tried changing my password and logging out froRead more
Hi, I just experience this on my sites as well. I have 2 that’s infected with this. The weird thing is that in WP-Cerber log, the account is created by my main Administrator account. So, it’s hard to block it as it seems done by the user account. I have tried changing my password and logging out from anywhere else, but did not fix the issue.
When the account is created, it installs random theme related to SEO. When I first discovered it, I found several folders in the “Plugins” folder randomly named – query-monitor, optxxx, zend-fonts-wp, seoplugins, etc.
I’m still looking for ways to stop this. Really annoying.
See lessI want to have two versions of one page for different region. For example first one would be for Dubai and will have the original domain name, and the second will be fo Singapure which will have additioan /sg tag
The best plugin I've tried for this is WPML. What you are trying to setup should be achieved by this plugin easily.
The best plugin I’ve tried for this is WPML. What you are trying to setup should be achieved by this plugin easily.
See lessHow do I secure a WordPress business website?
Hi @kyle, There are a ton of ways you can make sure your WordPress website stays safe from hackers and viruses. Some ideas include: Choosing trusted and secure web hosting companies like Siteground, Cloudways, and many others that suit your needs. Install SSL certificate. This is a must nowadays. UsRead more
Hi kyle,
There are a ton of ways you can make sure your WordPress website stays safe from hackers and viruses. Some ideas include:
How to setup cron job when special characters not allowed by my hosting?
Hi, @gilbertomagnate! In some hosting like hostinger, cron jobs with special symbols in the syntax will require you to make a bash (.sh) file which would support any form of cron job needed. A cron job that would execute a bash file looks like this: */5 * * * * /bin/sh /path/to/shell/script.sh And tRead more
Hi, gilbertomagnate!
In some hosting like hostinger, cron jobs with special symbols in the syntax will require you to make a bash (.sh) file which would support any form of cron job needed.
A cron job that would execute a bash file looks like this:
*/5 * * * * /bin/sh /path/to/shell/script.sh
And the bash.sh files contents should look like this example:
#!/bin/sh/usr/bin/php/home/u234927279/public_html/sendy/scheduled.php > /dev/null 2>&1 cron:run
The first part
#!/bin/sh
indicates this is a Bash file that will be opened by the cron.The second part loads the php libraries:
/usr/bin/php
The third part is the cron job that otherwise did not work because of the special characters.
cron:run
executes the cron job inside the file every time the file is opened.Once you have created the file with your cronjob in it, simply create a simple cronjob that points to the new .sh file.
I hope that helps.
See lessHow to add header.php to child theme?
Hi @kargaelo! First of all, welcome to the community, buddy. I hope you enjoy your stay here. Regarding your question, I think the easiest way to do this is to create a copy of the template files you want to change from the parent theme, in this case the header.php, then make your modifications toRead more
Hi kargaelo! First of all, welcome to the community, buddy. I hope you enjoy your stay here.
Regarding your question, I think the easiest way to do this is to create a copy of the template files you want to change from the parent theme, in this case the header.php, then make your modifications to the copied files. This way you will not be affecting or changing the parent files.
For more info about WordPress child themes, you may refer to this documentation.
https://developer.wordpress.org/themes/advanced-topics/child-themes/
Hope that helps.
See lessDisable mobile menu in Astra theme
Hi @michaelburge, you can use the following CSS code to disable the mobile menu by hiding the burger button. .ast-mobile-menu-buttons { display: none; } Hope that helps. Good luck.
Hi michaelburge, you can use the following CSS code to disable the mobile menu by hiding the burger button.
.ast-mobile-menu-buttons {
display: none;
}
Hope that helps. Good luck.
Mobile menu text color issue
Hi @michaelburge, this issue should be easily fixed on elementor, if you can't find the settings for it, try to use the CSS code below. .main-header-menu .menu-link, .ast-header-custom-item a { color: #212121; //change the color value accordingly to your liking } Hope that helps. Goodluck
Hi michaelburge, this issue should be easily fixed on elementor, if you can’t find the settings for it, try to use the CSS code below.
.main-header-menu .menu-link, .ast-header-custom-item a {
color: #212121; //change the color value accordingly to your liking
}
Hope that helps. Goodluck
See lessHow can I make CSS to take effect on mobile phones?
You can make use of @media rule of CSS like below. /* Set the background color of body to tan */ body { background-color: tan; } /* On screens that are 992px or less, set the background color to blue */ @media screen and (max-width: 992px) { body { background-color: blue; } } /* On screens that areRead more
You can make use of @media rule of CSS like below.
/* Set the background color of body to tan */
body {
background-color: tan;
}
/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 992px) {
body {
background-color: blue;
}
}
/* On screens that are 600px or less, set the background color to olive */
See less@media screen and (max-width: 600px) {
body {
background-color: olive;
}
}
WooCommerce Subscriptions is inactive error after updating to WooCommerce 4.4.0+
I have experienced the exact same issue with two different plugins on my sites. After updating WooCommerce on my two sites with EU VAT Pro and Subscriptio, both paid plugins which appear to no longer recognized WC 4.4.1 following the database update. Have you found a solution to this? I hope someoneRead more
I have experienced the exact same issue with two different plugins on my sites. After updating WooCommerce on my two sites with EU VAT Pro and Subscriptio, both paid plugins which appear to no longer recognized WC 4.4.1 following the database update. Have you found a solution to this?
I hope someone can help me us with the issue.
See less