In my website using Gutenberg with newspack-blocks plugins for online magazines. everything was working fine. Yesterday I have updated latest wordpress 5.9.1, afterthat I am getting the issues with newspack-newsletter plugin. WordPress 5.9.1 Gutenberg Version 11.1.0 Newspack Newsletters Version 1.31.2 Do I need to include any dependency manually?
I should send thousands of email in reaction to a specific event, so the email sending is not manual but it's automatic. The server where is hosted my website has an hourly limit for email sending (about 500 for hour) so I need to partition it. Is there some plugin that has that feature? Or some PHP library that helps me to do that? Thanks
I've been trying to solve this myself for hours but I can't figure out where I am going wrong. I have a custom registration form on my website and I would like to add a checkbox for users to sign up for the newsletter. I went through the Mailpoet Docs and tried everything that they describe there but something is not working for me. The user is being signed up successfully but never gets added to my mainling list. Here's …
Although found many questions and answers about showing all posts in categories, I can't achieve this: Show all posts from each category in as many page as my sites glows. Let's says we have a site where its focus on Games, Fitness, Cars and Watchers in Generals (since we are few novice writers and would like to all focus on one site instead of have our own individually) Now we have create a page for each category( localhost/news, localhost/games, localhost/itness …
I've been using Feedburner for years. Their email subscription feature allowed me to let my subscribers receive an email letting then know when a new post was published. That feature was shut off on July 1st, 2021,and I'm trying to find a substitute for that. My VPS can send emails, but all of them are detected as spam. I've tried to fix that by adding SPF, DKIM (setting up OpenDkim) and DMARC on my domain, but I've probably made some …
I have a simple <input type="email"> that I want to use to create a subscription form for mailchimp newsletter. I will use the HTTP API and no plugin, this because I think this will be less overkill for the app. I have only two minor question about this implementation: 1) I need to pass to my plugin or function file the wp_ajax_nopriv and wp_ajax_ actions as normally I do with forms to manage the data right? 2) How I can …
I have newsletters from MailChimp I'd like to include as WordPress posts. Trouble is, all the formatting in the MailChimp post makes it difficult to bring into WordPress. Is there any way to do this - what are the options? At this point I've tried a few plugins and various copy-and-paste based methods. I may try just using an iframe in a WordPress post to show the newsletter, but I'm not sure if iframes work in WordPress posts. Part of …
I have been hunting the web for days for this feature, and I am kind of surprised it's so hard to find / nobody really talks about it! I have a Wordpress site with a custom post type that can be pulled by different search attributes. I am looking for a way for users to subscribe to a specific search query string, and once per week, get notified automatically via email when new posts that match their search query string …
How to remove fresh posts (latest news) on the main page? I can't find how to remove the "fresh posts"(latest news), I don't need it. Themes the Virtue. Tell me please. Thank you in advance. See below pictures.
I would like to basically send a newsletter type email to a listy I have using a 3rd party such as MailChimp. My goal though is to be able to find or build a WordPress plugin that will allow me to get all the new Posts that are within 2 date ranges...It will then allow me to generate the HTML for Posts within that date range and then I can export the html generate to my 3rd part newsletter service …
Is there a way that I can allow someone to create and send a newsletter from the front-end, without needing to use the dashboard? The person who will be doing this task does not need to use the dashboard for other purposes. Learning to navigate the dashboard just for this would be confusing.
I am using Email Subscribers and newsletters 1.0 plugin in wordpress 4.7.2 I created a daughter website and wanted to subscribe to the same subscribe list. How will this be done? I could not find something similar to a mailchimp action url which I can enter anywhere.
I am working for a site currently having MailPoet to send all the newsletters. We have around 800 subscribers and everything is configured properly and working fine. Now, we got around 5000 emails for a new mailing list required only for a specific event that we are hosting. Mails need to be sent to these lists just once or twice. We do not want to upgrade Mail Poet for more subscribers. Instead, I found a new newsletter SendinBlue where I …
Is there a way to export certain posts into an HTML newsletter format that is suitable to email to subscribers? I am thinking of something that allows me to select a certain amount of posts, etc and that then generates in-line HTML content with those posts in them in a format I can copy and paste into a newsletter management tool (i.e. mailchimp, campaigner, etc). I've noticed that some mail providers like mailchimp, aweber, etc offers RSS to email, which …
I have a page on WordPress (example: abc.wpengine.com/abc) and I want to change it to abc.wpengine.com/xyz. I tried to fix the page inside Pages and Posts, but it was not there. I also went into my theme's Custom Options > Customizing > Menus which is where I found the menu item and the page (abc) and "Custom Link" as the label: I went ahead and changed the menu URL to abc.wpengine.com/xyz, but when I try to access the page it …
I already use WordPress to create an online catalog and web presence. Now, a little box tells people to enter their email address, and they will receive an email when a new product is added to the site (which is useful). Now, having entered the email addresses manually or asked people to enter it, I would like to have a little CRM for managing those mails, getting the names, phones, emails, addresses, and references (why they are in the database) …
Is there a possibility to notify a list of users when a post changes its contents? I am using MailPoet at the moment but tips for any plugin would be helpful. The newsletter plugins I have found so far only notify when new posts are created. Not when they change. EDIT: I have tried as well the "Email Post Changes" plugin but it doesn't support a mailing-list and it shows the post changes as colored diff. I would like a …
I am currently building a site that will use newsletters, email notifications for new posts and email notifications for new comments on posts. I keep going back and forth between running this through third party sites and doing it solely through my WordPress website. I should mention, when I say third party, I am including the WrodPress.com email/comment subscriptions built into Jetpack, maybe FeedBurner for new post emails instead and I am considering MailChimp.com for newsletters. If running it myself, …
I'm using the Newsletter plugin and would like to make it accessible to author users. Is it possible to do so? If there's no solution for this I'll edit the editor role to make it a new author role.
I've created this function: function email_subscribed_users($event) { $users = get_users('role=subscriber'); foreach ($users as $user) { $accepted = get_user_meta($user->ID, 'accepted', true); if ($accepted) { wp_mail($recipients, $event->event_title, $event->event_desc, 'From: <[email protected]>'); } } } But it requires a lot of time sending the emails knowing that the users will increase by time.What function should I use to send the emails efficiently or there is a newsletter plugin to do this?