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 access the Whitelabel settings of WP Security Ninja?
That's awesome, man. I just got it as well and so far, I'm liking it. Support has been quick to answer my concerns as well especially with the whitelabel features. Anyway, to answer your question, just use the URL below replacing the domain name. https://YOURDOMAIN.COM/wp-admin/admin.php?page=wf-sn#Read more
That’s awesome, man. I just got it as well and so far, I’m liking it. Support has been quick to answer my concerns as well especially with the whitelabel features. Anyway, to answer your question, just use the URL below replacing the domain name.
How can I remove the "Powered by Fluent Forms" at the Footer of the form?
Hi @Melissa, Try this: Go to your WordPress dashboard. Navigate to the "FluentForm" plugin settings. Look for the option related to the form footer or branding. Disable or customize the settings to remove the "Powered by FluentForm" text from the form footer. Save your changes. Let me know how it goRead more
Hi melissa,
Try this:
Let me know how it goes.
See lessHow to disable Divi AI?
You may use CSS to disable it. However, if you wish to disable Divi AI on both the frontend and backend, you may use the following code to be added to your "mu-plugin" folder. To implement your custom plugin as a Must Use plugin (mu-plugin) in WordPress, you need to follow these steps: Access your WRead more
You may use CSS to disable it. However, if you wish to disable Divi AI on both the frontend and backend, you may use the following code to be added to your “mu-plugin” folder.
To implement your custom plugin as a Must Use plugin (mu-plugin) in WordPress, you need to follow these steps:
wp-content
directory. If themu-plugins
directory does not exist, create one.mu-plugins
directory. You can name it something related to your plugin, such asdisable-divi-ai-function.php
.Here is your code for reference:
See lessHow 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.