Jainil Nagar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Moving blocks to topSince you’re using Divi theme, the easiest way to rearrange is by using the Divi’s layers view which makes locating sections much easier.
You can follow this guide for the visual walkthrough: https://www.elegantthemes.com/documentation/divi/using-the-divi-layers-view/
Forum: Plugins
In reply to: [Contact Form 7] Form submit confusionIf you are not receiving email notifications from your forms, this usually related to how emails are being sent from your site rather than the form plugin itself.
Here are few things you can check:
- Mail settings in Contact Form 7:
Make sure the “To” email address is correct and properly formatted. Also, check the “From” address as it is recommended to use an email that matches your domain - Check Spam/Junk Folder:
Sometimes emails are delivered but they end up in the spam. - Test WordPress Mails:
Try using another plugin or test feature like password reset to see if the emails are working at all. if not, the issue is likely with your server/email configuration. - Use SMTP instead of PHP mail:
Many hosting providers block or limit the use of PHP mail. Using SMTP to send email via a proper mail server like Gmail, Outlook, etc. - Try and Check Email Logs:
Try an email log plugin to see if the emails are being logged or not, and if your hosting provider provides Email logs, and then check there as well. - Check hosting restrictions:
Some hosts requires specific email configurations or block outgoing mail by default.
It may help if you share your mail tab configurations, any error messages you see or environment information.
Forum: Fixing WordPress
In reply to: Removing bullets from “Latest Posts” blockYou can remove the bullets with CSS, but it’s best to scope it to just that block so it doesn’t affect other lists on your site.
First, add a custom class to your Latest Posts block:
- Edit the page
- Select the Latest Posts block
- In the right sidebar, open the Advanced panel
- Add a class name like:
home-latest-posts
Then add CSS like below:
.home-latest-posts li {
list-style-type: none;
}Forum: Fixing WordPress
In reply to: Uploading a zip fileThe cause of the error should be found in the error log, which is accessible in your hosting panel. If needed, your hosting support can assist you with this.
Another option is to enable debugging in WordPress. Instructions for this can be found here: https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/
Since the error is occurring on the Themes page, it’s likely related to a theme or plugin conflict, but the exact cause will be clearer once you check the logs.
- This reply was modified 1 month, 1 week ago by Jainil Nagar.
- This reply was modified 1 month, 1 week ago by Jainil Nagar.
Forum: Plugins
In reply to: [Contact Form 7] Button for Contact Form Display?Contact Form 7 itself does not include built in functionality for displaying forms in a popup or accordion style toggle.
It focuses on form handling, so behaviors like modals, popups, or show/hide interactions are usually handled at the theme or JavaScript level.
You can achieve what you’re looking for by:
- Using a popup/modal plugin and placing your Contact Form 7 shortcode inside it, or
- Adding a simple toggle/accordion with custom JavaScript or your theme’s existing components to show/hide the form when a button is clicked
If your theme already includes modal or accordion features, that can often be the easiest way to implement this without additional plugins.
Forum: Fixing WordPress
In reply to: Fatal Error Message From WordPressThat email is triggered when WordPress detects a PHP fatal error, so in your case there was a fatal error at some point.
Not all fatal errors are major in terms of impact. Even something as small as a typo, like a syntax error, can cause a fatal error in PHP, which will stop the script from executing and trigger that notification.
The plugin support confirmed that they have identified the issue and it is a minor issue then should not have any major impact on your site and they will resolve it and release a new update.
Forum: Plugins
In reply to: [Contact Form 7] I don’t receive the email notifications from any of my formsIf you are not receiving email notifications from your forms, this usually related to how emails are being sent from your site rather than the form plugin itself.
Here are few things you can check:
- Mail settings in Contact Form 7:
Make sure the “To” email address is correct and properly formatted. Also, check the “From” address as it is recommended to use an email that matches your domain - Check Spam/Junk Folder:
Sometimes emails are delivered but they end up in the spam. - Test WordPress Mails:
Try using another plugin or test feature like password reset to see if the emails are working at all. if not, the issue is likely with your server/email configuration. - Use SMTP instead of PHP mail:
Many hosting providers block or limit the use of PHP mail. Using SMTP to send email via a proper mail server like Gmail, Outlook, etc. - Try and Check Email Logs:
Try an email log plugin to see if the emails are being logged or not, and if your hosting provider provides Email logs, and then check there as well. - Check hosting restrictions:
Some hosts requires specific email configurations or block outgoing mail by default.
It may help if you share your mail tab configurations, any error messages you see or environment information.
I believe you’re trying to add a price modifier per attribute term (e.g., XL → +₹100), which isn’t supported by WooCommerce core.
In WooCommerce, attributes and their terms don’t have pricing logic by default and pricing is only handled at the variation level.
For cases like yours, where multiple attributes can lead to many combinations, a common approach is to use a product add-ons/extra options extension. These allow you to define options like Size or Color and assign an additional price to each selection, which is then added to the base product price dynamically on the frontend.
For example, WooCommerce’s own Product Add-Ons for WooCommerce extension is one option that provides this functionality, and there are also similar plugins available depending on your needs.
Forum: Plugins
In reply to: [Contact Form 7] wpcf7_spam and RecaptchaAs per the documentation, you need to add the following condition first in the filter. This checks for the other spam filters first.
if ( $spam ) { return $spam; }Forum: Plugins
In reply to: [Contact Form 7] Reflection does not reflectThis might be due to the conditional fields plugin. Please check this Support Thread.
- This reply was modified 2 years, 6 months ago by Jainil Nagar.
Forum: Plugins
In reply to: [Contact Form 7] Visitor can’t submit cf7 without loginDoes WP Hardening plugin also have rest API disabled?
CF7 uses the rest api. So the issue is not with the CF7 plugin.
Forum: Plugins
In reply to: [Contact Form 7] Visitor can’t submit cf7 without loginhttps://mfaeca.org/wp-json still shows the restriction.
Forum: Plugins
In reply to: [Contact Form 7] Change select “blank-text” based on field or formIf you want to set a placeholder than you can do the following:
[select grieve first_as_label "Select one" "Shipping" "Price" "Customer service"]Forum: Plugins
In reply to: [Contact Form 7] Visitor can’t submit cf7 without loginYes, but it is only enabled for the logged in users. CF7 uses the rest api. So when the guest user submits the form the submission does not work.
Forum: Plugins
In reply to: [Contact Form 7] Visitor can’t submit cf7 without loginCheck
Disabled rest apiplugin settings. You may have set the option to enable the rest api for logged in user only. - Mail settings in Contact Form 7: