Tseten a11n
Forum Replies Created
-
I’m glad to hear that you are able to find the source of the problem. Yes shortcodes by default is added in
the_content()function. We are not developers but you might be able to achieve your requirements by customizing the code further with some actions and filters. I recommend checking the information in https://kb.mailpoet.com/article/274-list-of-filters-and-actionsThese types of errors are most often caused by either missing or corrupted files, which can happen if there’s some type of glitch while updating WordPress plugins/themes and something doesn’t go as expected.
As a first step here, I’d recommend re-installing the plugin and then checking to see if the issue is resolved. You can remove the plugin and re-install it from your admin dashboard’s Plugins page, or alternatively we have a guide for re-installing via FTP here: Re-installing / Updating the Plugin via FTP
Please let me know how that goes, or if you have any questions! If you are still having issues afterwards, please let us know, and copy and paste the information from MailPoet > Help > System Info, and send that over as well.It looks like you changed the subscription form layout and you have already resolved the display problem:
Image Link: https://d.pr/i/RYU1tR
Let us know if you still need further assistance.
I see that you are looking to assign mailing lists based on user roles. While this specific feature is not available, you can accomplish similar functionality by creating automated segments and sending newsletters based on the segments. By doing so, you can target specific user groups effectively.
You can find more information on how to create automated segments and send newsletters based on the segments in the guide to subscriber segmentation here.
Hello,
I’d be happy to assist you with your request. Could you please confirm if the templates you are referring to are the email templates? Also, the screenshot you shared is not working, so it would be great if you could share the screenshot again.
Can you also please send us the following information to have a better understanding of your MailPoet setup:
- A screenshot of the MailPoet > Help > System Status page. Please ensure to capture the whole page or make several screenshots.
- Copy and paste the information from MailPoet > Help > System Info.
Hello,
I’d be happy to assist you with the issue you’re experiencing. Could you please clarify where you are seeing the white screen? Is it when adding a new post on your site in All Post > Add New or when working with the MailPoet configuration?
Additionally, can you please send us the following information:
- A screenshot of the MailPoet > Help > System Status page. Please ensure to capture the whole page or make several screenshots.
- Copy and paste the information from MailPoet > Help > System Info.
If you don’t already have a screenshot service installed, here are a few options:
- https://snipboard.io
- http://skitch.com/
- http://getcloudapp.com/
- http://awesomescreenshot.com/ There is also a walkthrough guide here: https://en.support.wordpress.com/make-a-screenshot/.
I understand you want to remove the gap underneath the form in the footer. I’m not sure if you have already resolved that as this is what I see:
Image Link: https://d.pr/i/CXwQOE
Incase you are referring to the blank space between the form container and the grey footer area. Try adding the following custom CSS code:
.footer-widgets { margin-bottom: 0; }This results in:
Image Link: https://d.pr/i/tvnHjx
We have seen one other report of this error on a user’s site, and in that case it appears to have been caused by an issue with the database either being corrupted, or by the database table never having been created in the first place.
For that user, they informed us that they reached out to their hosting who helped them to recreate the database, and then import the data from the old database, which resolved the error for them. Please check with your hosting to see if something may have caused the database not to be created (they may have error logs that could explain what happened).
You could also try deleting all tables in the database starting with
_mailpoet, and then reinstalling the plugin to see if it allows all tables to be created successfully.
Alternatively, I believe the “Reinstall from scratch” option under MailPoet > Settings > Advanced should also cause tables to be dropped and recreated.Please let me know how that goes, or if you have any questions!
Just to make sure we are on the same page, your sender domain with
calvarypresbychurch.orgis verified but you are using a different email address to send emails? If that is the case, check if you have authorized the FROM email address as mentioned in https://kb.mailpoet.com/article/266-how-to-add-an-authorized-email-address-as-the-from-addressThe
wpmu_registration_enabledfilter in MailPoet serves to control whether user registration is enabled in a WordPress Multisite environment. When this filter is active, it allows you to modify whether new users can register on the site.The specific purpose of this filter is to provide flexibility in controlling user registration settings, particularly in Multisite installations where you might want to restrict or enable registration differently across various network sites.
When this filter is active, you can access and modify the following variables:
$registration_enabled(boolean): This variable represents whether user registration is currently enabled (true) or disabled (false).
You can hook into this filter using the
add_filter()function in WordPress. The filter is active at the point where WordPress checks whether user registration is enabled, typically during the user registration process or when accessing settings related to user registration.Here’s an example of how you can use this filter:
add_filter('wpmu_registration_enabled', 'customize_registration_enabled'); function customize_registration_enabled($registration_enabled) { // Modify the $registration_enabled variable based on custom conditions if (/* Your custom condition */) { $registration_enabled = true; // Enable registration } else { $registration_enabled = false; // Disable registration } return $registration_enabled; }In this example, the
customize_registration_enabledfunction hooks into thewpmu_registration_enabledfilter and modifies the$registration_enabledvariable based on custom conditions. You can adjust the conditions according to your specific requirements.Hi can you please attach your CSV file in your reply so that we can test this on our end? Make sure to delete all the real values like the subscriber’s info and replace it with a dummy one. The file doesn’t need all the subscribers, just one or two should be fine.
Thank you for sharing the system info. I looked into the account and don’t see any problem with it and also can confirm that the email ID
projectname_ext@projects.mydomain.extis not suppressed in our system.Just to doubt check, this is the email address you are using to send the newsletter preview? And another question, does it work when you use a different email ID?
I understand you are not able to receive emails to your custom email addresses. Can you please send us the following information to investigate this further:
- A screenshot of the MailPoet > Help > System Status page. Please ensure to capture the whole page or make several screenshots.
- Copy and paste the information from MailPoet > Help > System Info.
Forum: Plugins
In reply to: [MailPoet - Newsletters, Email Marketing, and Automation] Emails not sendingThank you for sharing the system info that was helpful. I found that there might be a connection issue as the CRON ping is not working on your site. It seems to be restricted by some kind of security. I’m not sure if you have any security plugin or if your host have security setup but I recommend disabling that and see if the link: https://ldcmindset.com/?mailpoet_router&endpoint=cron_daemon&action=ping returns only
pong.If you are not sure what might be causing this, the best thing to do is perform a full conflict test to find out the cause of this problem. You can find more information in our Knowledge Base.
I looked into your MailPoet account and noticed that your sender domain for
calvarypresbychurch.orgis already verified. Let us know if you are still having trouble with this.