Forum Replies Created

Viewing 200 posts - 401 through 600 (of 2,264 total)
  • Author
    Posts
  • Stefano
    Keymaster

    Hi, the autoresponder is not lmited to only one series. Please open a support ticket so we can setup a debug session. It sounds like an incompatibility with other plugin. Could it be you’re creating the autoresponder using the old theme system?

    in reply to: Can you see what date people subscribed? #301117
    Stefano
    Keymaster

    Yes, enter the subscribe edit panel and there you can find the creation date.

    in reply to: Adding short code to HTML #300918
    Stefano
    Keymaster

    Hi, the form send the data to your homepage with parameter ?na=s. If the page just reload and you see that parameter there is a problem with a caching plugin or like.
    About the confirmation URL, try to use a full URL instead of the relative one, but it should no be a problem.

    in reply to: E-Mail Address Missing Error #300781
    Stefano
    Keymaster

    Hi, it’s the mail server refunsing to accept it. Unluckly even the mail validators and not uniform and that address can “pass” the validation when collected but not the validator of the mail service.

    in reply to: Subscriber page refreshing #300673
    Stefano
    Keymaster

    Hi, this is rather weird, probably there is another plugin injecting some kind of code in our pages… try to deactivate other plugin and check it again until you find, if possible, the one that is creating the issue.

    in reply to: Discriminate by Domain? #300661
    Stefano
    Keymaster

    Hi, you should run a query at the database level. Take a list not in use, suppose list number 3.

    Run a query to add the list 3 to all *outlook.com addresses in your database:

    update wp_newsletter set list_3=1 where email like ‘%@outlook.com’

    you can run that query for other addresses, like outlook.fr and so on.

    Then when you send a newsletter, you set the targeting to exclude everyone on list 3.

    in reply to: Leads Add-on not showing #300590
    Stefano
    Keymaster

    Hi, to have support for paid addons, please open a ticket in the support area. For this specific issue, it could be a problem of the theme and the javascript used. Try to set the addon to work with the alternative popup library and see if that changes things.

    Stefano
    Keymaster

    Hi, no, it is not correct and it is neither possible. When a newsletter is sent, the contacts are extracted always filtering by their status and it must be “confirmed”.

    What sometime happens is this: the email is sent to A, A forward to B and B generate a bounce.

    What you can try to do is to check the returned email and see if it contains the original message. Using the link to manage the profile, open the profile edit page and check which contact has originally received the email.

    One case I saw, the original address was a mailing list forwarding the email to some other addresses (some of them were subscribers as well!).

    in reply to: Having trouble sending a newsletter to all subscribers #300305
    Stefano
    Keymaster

    Hi, the notice means you selected, on that newsletter targeting, to send the email to not confirmed subscribers, usually you want to send only to confirmed. That option is used to resend a request for activation to who never activated the subscription.

    Stefano
    Keymaster

    Hi, actually not, it’s not possible to show lists selection on checkout.

    Stefano
    Keymaster

    Hi, it’s not possible to selected a timeframe, all future events with the specified number limit are selected right now. A custom block could probably be coded by a coder (is pretty easy) state that the are ways to ask the Events Calendar plugin to filter by dates (otherwise the implementation can be a bit more complicated).

    Mailserlite is a mail marketing platform, is not a delivery service, so we have not an addon for them. If they provide an SMTP interface (I don’t think, anyway), you can use an SMTP plugin to send via mailerlite the emails generated by Newsletter.

    Stefano
    Keymaster

    Hi, actually it’s not possible from the admin interface, you should work at database level, but it’s something more technical.

    Stefano
    Keymaster

    Yes it works this way: when in the template there is a block of posts (with its filters), the block can be configured to “stop” the newsletter generation is there are no new posts (after the last delivery date). So, if no other posts with tag “1000” are added, the generation should be skipped.
    Just pay attention to the right configuration of the posts block. The “skip” options are available only when the block is used to create an Automated template.

    in reply to: import plug in not found #300264
    Stefano
    Keymaster

    Hi, it’s a bug of the version 1.3.8: please save the Newsletter main options and then you should be able to update to version 1.3.9.

    Thank you!

    in reply to: Slow delivery despite cron #300263
    Stefano
    Keymaster

    Hi, please check on the System panel the mean time to send a single email, could be the mail server is very slow. Could be the link to the stats are wrong, check the System/Status and in particular the “Send details” block of data.

    in reply to: After resent advanced import, import no longer available #300255
    Stefano
    Keymaster

    Hi, it was a bug on version 1.3.8. Please update to version 1.3.9 (saving the main newsletter options refresh the version cache, if the 1.3.9 is not available).

    Thank you!

    in reply to: After resent advanced import, import no longer available #300220
    Stefano
    Keymaster

    Hi, please check if it is present on the admin menu of Newsletter under Subscribers/Advanced import.

    Thank you, Stefano.

    in reply to: Snippet #300187
    Stefano
    Keymaster

    Hi, it’s not clear what is that snippet, we didn’t change our newsletter format, could you share a screenshot of that snippet?

    in reply to: Import plugins from composer #300127
    Stefano
    Keymaster

    Hi, as far as I know, is not possible, at least we do not provide a public version on packagist of that addon.

    Stefano
    Keymaster

    Hi, we do not store the contact on that service, we just use it to send emails, so only the number of email per month/day should apply. Not sure about that, you should ask them.

    Stefano
    Keymaster

    Hi, you can try to check sendgrid, mailjet, mailersend, mailgun.

    in reply to: How can I integrate the plugin? #300045
    Stefano
    Keymaster

    Hi, you should ask the theme authors, I don’t know how they integrated it. Probably they have a contact/subscription form that adds subscriber into the Newsletter plugin database.

    Stefano
    Keymaster

    Hi, from the error it seems the plugin is missing a lot of files, can you reinstall it or check if the wp-content/plugins/newsletter is present?
    Could be the plugin folder has been renamed?

    in reply to: Category, submit your new post! #300020
    Stefano
    Keymaster

    Hi, if you have a license, please open a ticket so you’ll be addressed to the right support person.
    If the job is a custom post type, you should used Automated and compse a newsletter with the CPT block, available with the extended composer blocks.

    Stefano
    Keymaster

    Sorry, I said the wrong thing: the shortcode should be executed per subscriber, are the shortcodes enabled on Newsletter’s main settings? If so and still they’re not executed, it means they’re not registered in the admin context… they would work on a real delivery since the delivery is executed in the “scheduler” context, but the code sample is even more “secure”.

    Stefano
    Keymaster

    Hi, that behavior is correct, shortcodes are executed once not per subscriber. But with this little code sample, you can add a filter to get the code executed per subscriber:

    https://github.com/TheNewsletterPlugin/newsletter-codesamples/blob/master/subscriber-coupon.php

    in reply to: Adding date/time to the page of All subscribers #299687
    Stefano
    Keymaster

    Hi, it’s actually not possible, I’ve forwarded the request to our devs.
    Thank you!

    Stefano
    Keymaster

    Hi, the dedicated page for the Newsletter plugin, needs to have only the [newsletter] shortcode it is still not integrated with the form designer.
    We should deal with that integration on the next release.

    in reply to: Newsletter not arriving #299623
    Stefano
    Keymaster

    Hi, if you have no errors in the diagnostic panel, it means emails are moved to the delivery service and there something happens.
    See this article that explains how the delivery happens in WP.
    https://www.satollo.net/how-email-delivery-works-in-wordpress-and-why-it-can-fail
    Are you using an SMTP plugin or a delivery addon?

    in reply to: Advanced Import – Copy & paste 1st line is missing #299622
    Stefano
    Keymaster

    Hi, the first line needs to be the labels to identify the columns when mapping the data, and it’s not imported.

    Stefano
    Keymaster

    Hi, the emails generated by a designed newsletter are all identical (apart from the personal link to unsubscribe), the plugin never translates or changes the content. I imagine this is happening elsewhere for example by the delivery system you’re using… really I don’t know. Can you share a couple of examples?
    Could they have been translated by GMail (which sometimes offers that option?

    in reply to: Periodic, trial access #299620
    Stefano
    Keymaster

    Hi, no we do have not a trial version, but we have a 30 days refund policy, no questions asked. There is even an offer running right now.

    in reply to: Dashboard subscribers statistics issue #299618
    Stefano
    Keymaster

    Hi, thank you for reporting, for sure it is an unwanted defect of the new design, probably we miss to include some style rules.

    in reply to: How To Edit On Site Newsletter #299617
    Stefano
    Keymaster

    Hi, you can use the shortocdes to build a form directly inside a WP page, and all other elements ca be inserted directly with the WP editor (classic or Gutenberg). See the shortcodes documentation here:
    https://www.thenewsletterplugin.com/documentation/subscription/subscription-form-shortcodes/

    Stefano
    Keymaster

    Hi, you should open the “subscription form fields” panel and set which fields should be visible. Probably on your staging site, the configuration is different the on production.

    in reply to: how to see undelivered mails #299615
    Stefano
    Keymaster

    Hi, all emails are basically delivered, since errors are returned with a special message to the email address used to send (or the one set as “return path” (on the Newsletter main settings, for example).
    If you receive those messages, you can use our Bounce addon which is able to analyze them. But to have pro-level management of those “errors”, you should use a delivery service.

    in reply to: Newsletter Delivery (SMTP service) #299612
    Stefano
    Keymaster

    Hi, the SMTP addon can be used to connect to any SMTP service, we do not provide a delivery service. Anyway, you can choose from a big number of services, starting from Amazon SES, Mailgun, Mailersend, Mailjet, Sendgrid, and so on. Every one of those services has usually a basic free plan and you can use them from your blog installing an SMTP plugin, like Fluent SMTP.

    in reply to: Newsletter statistics #298324
    Stefano
    Keymaster

    Yes, they are included.

    in reply to: Images not showing on some emails #298276
    Stefano
    Keymaster

    Hi, are they not showing on Apple Mail? If one client shows them, it means they’re correctly referred in the email body: probably the provider is blocking some clients. Try to send a test email using the “System/Delivery” test option and if one of the two included images is shown, it means the provider is blocking the loading of the other one (the one shown should be the one served from our servers).

    in reply to: Might Give Up Soon #298274
    Stefano
    Keymaster

    Uhm, usually a cache plugin never blocks the wp-cron.php, so probably the provider has not added the cron call correctly.

    in reply to: Single opt-in for repeated subscriptions not working #298184
    Stefano
    Keymaster

    Yes, it’s a bug, it should be fixed in the upcoming release. Thank you for reporting.

    in reply to: Amazon SES – moving out of sandbox denied #298183
    Stefano
    Keymaster

    Hi Ursula, that’s weird we never got problems with Amazon SES (we use it and configure it for many customers). Try to select a new region and ask them to get out of the sandbox for that region. Usually you can select the region you prefer, what do you mean they refused due to the “wrong region”?

    in reply to: The subscriber can’t get my newsletter email #298182
    Stefano
    Keymaster

    Hi, if you try to send a test email from the System/Delivery page and no errors are shown but the email is not delivered almost surely it’s a problem with your hosting provider and you should contact them.
    Let me know the test results, thank you.

    in reply to: Issues with the newsletter composer #298180
    Stefano
    Keymaster

    Thank you very much for sharing all those interesting ideas! We’ll try to include what’s possible in next versions.

    in reply to: Style the “Blog Posts” Block in Automated Newsletter #298179
    Stefano
    Keymaster

    Hi, you should code a custom block, duplicating the one provided and changing the layout. See how to code a block (it’s pretty easy) here: https://www.thenewsletterplugin.com/documentation/developers/dev-composer-blocks/

    in reply to: double opt-in option disappeared #298178
    Stefano
    Keymaster

    Hi, the opt-in mode is present in the subscribe/subscription configuration page (on Newsletter top menu, under List Building).

    in reply to: numero totale iscritti #298177
    Stefano
    Keymaster

    Ciao, no, non abbiamo un “tag” per estrarre il totale.

    in reply to: Connection to Mallet #298176
    Stefano
    Keymaster

    Hi, we support the direct connection to mailjet with our addon, probably you have the option with your provider to use directly mailjet. In this case, there is nothing the plugin should do, since the “switch” to mailjet is made by your provider.
    You can send a test email from our System/Delivery page and verify it is delivered to your inbox. Usually, for example with Gmail, the email header report the delivery provider.

    If you send a test to test @ thenewsletterplugin . com I can check it.

    in reply to: Email: Your Site is Experiencing a Technical Issue #297990
    Stefano
    Keymaster

    Hi, the plugin feedzy-rss-feeds-pro is including the library guzzle which is even part of the amazon SDK we need to include to use amazon ses. We care to activate the library only when we need to use it, probably the feedzy-rss-feeds-pro plugin loads it every time and the two versions conflict.
    Unfortunately, there is nothing that can be done that not to use one of the plugins.

    in reply to: Email: Your Site is Experiencing a Technical Issue #297991
    Stefano
    Keymaster

    Hi, the plugin feedzy-rss-feeds-pro is including the library guzzle which is even part of the amazon SDK we need to include to use amazon ses. We care to activate the library only when we need to use it, probably the feedzy-rss-feeds-pro plugin loads it every time and the two versions conflict.
    Unfortunately, there is nothing that can be done that not to use one of the plugins.

    in reply to: Please key a valid address #297584
    Stefano
    Keymaster

    Hi, the block is shown when data is submitted or directly in the browser email field? The problem is actually the validation of IDN domains: they’re valid but it’s required specific code to correctly manage them (and sometimes email services does not accept them).

    in reply to: Suggestion for new feature #297581
    Stefano
    Keymaster

    Hi, thank you for sharing. There is an average speed on System pages (usually when one or more newsletters are going out to get an idea of how long it would take). Actually, we probably have not information on a specific newsletter, anyway I’ll check it.

    in reply to: Resetting Bounced status #297517
    Stefano
    Keymaster

    Ok, no problem! 🙂
    Have a nice day!

    in reply to: Resetting Bounced status #297515
    Stefano
    Keymaster

    Will be added on next release. If you want to manually run a query, just run:
    update wp_newsletter set status=’C’ where status=’B’

    in reply to: Batch Remove from Autoresponder #297512
    Stefano
    Keymaster

    If you reimported them, they get a new ID, so the autoresponder, when it tries to send the email, won’t find the subscriber and skip it.

    in reply to: Subscribers are advertisers #297510
    Stefano
    Keymaster

    Hi, I’m sorry, but we do not offer custom implementations right now.
    Stefano.

    in reply to: How to send a newsletter from a local site? #297508
    Stefano
    Keymaster

    Hi, if you have a local development env. it depends on how you configured it. For example, XAMPP provides a mailing system. If you have a mail service with an SMTP, you can install an SMTP plugin to connect the site with that service.
    There are so many ways to set up a dev. env. that is hard to answer… probably is simpler to get a cheap hosting with a real domain where everything is already working.

    in reply to: Display product variations using IDs #297448
    Stefano
    Keymaster

    Hi, we never tried that plugin and I suspect that is not possible. When getting a product by ID we simply ask WC to get it and we display what is returned: if nothing is shown it means WC is returning an empty content.

    in reply to: Additional Columns Block – for HTML / TEXT #297447
    Stefano
    Keymaster

    Uhm, you gave me the idea to simply add the option to select more than one column to that block, actually… should not be a problem. I’ll talk with devs.

    in reply to: Automated newsletter generation error #297446
    Stefano
    Keymaster

    Hi, have you created the template for your newsletter? There should be a posts block (at least one) configured to get the latest post (when used in the Automated context it has a few more options).

    in reply to: Database error when creating newsletter #297445
    Stefano
    Keymaster

    Hi, you’re missing all the newsletter plugin tables. Try to deactivate and reactivate it. If the tables are not created it means the database user set in your wp-config.php file has not the “create” permission.

    in reply to: Background image for newsletter? #297444
    Stefano
    Keymaster

    Hi, no, we do not support background images. Usually set one via CSS is not enough, you need to use even a table with an old-style background attribute.

    Stefano
    Keymaster

    Hi, we count one open per subscriber or better, how many subscribers of the contacted ones opened the email.
    The opening is tracked with an image and the client could load the amazon one and not ours, for example (different domains). We count as an opening even a click, of course.
    Counting how many times an email is opened could have some interest, but…

    in reply to: Newletter Stats Off #296701
    Stefano
    Keymaster

    Hi, could you give us some values to compare? Just to understand what is measured.

    Stefano
    Keymaster

    Hi, edit the newsletter an use the pause button to stop it.

    in reply to: where to switch of for different languages #296645
    Stefano
    Keymaster

    Hi, the language shown should be relative to the language of your profile as a subscriber: try to check if you have the English language set.

    in reply to: Body Classes According TNA Page State #296512
    Stefano
    Keymaster

    Hi, I’ve created a task for devs, thank you!
    Possibly you can add a div with a class around the messages editing them on subscription, profile, and cancellation configuration pages.

    in reply to: Adrotate shortcode in newsletter content no working #296511
    Stefano
    Keymaster

    Hi, you need to activate the shortcodes on Newsletter’s main settings but pay attention that banners inserted via javascript and not pure images, won’t work on email clients.

    in reply to: Is there any way to edit published newsletters? #296504
    Stefano
    Keymaster

    If it is already sent, you need to change it on the database, table wp_newsletter_emails.

    in reply to: Resetting Bounced status #296406
    Stefano
    Keymaster

    You can run a query:

    update wp_newsletter set status=’C’ where status=’B’

    in reply to: Subscribers are advertisers #296401
    Stefano
    Keymaster

    Hi, the only solution that comes to my mind, not exactly knowing how the system is working, is to use the newsletter_message filter to change the content of the message when it is sent to each subscriber. See the developer section in the documentation area.
    The filter is invoked with the message object and the subscriber object. The message can contain a placeholder that can be replaced in the filter implementation.
    About the name of a subscriber, it can be referenced with the {name} tag.
    Note: we’re talking about subscribers, not wp users.

    in reply to: Call subscriber information in other wordpress functions? #296400
    Stefano
    Keymaster

    Hi, if you have a subscriber’s ID you can get the full object (matching the table fields wp_newsletter) using Newsletter::instance()- >get_user(subscriber id)

    in reply to: Newsletter with Sendinblue and a subscribe Popup #296379
    Stefano
    Keymaster

    Hi, if you’re using the sendinblue mailing list, you probably do not need the Newsletter plugin, since you then should send emails directly from their console (even the welcome email). Our integration with sendinblue is only to send emails via their delivery service.

    in reply to: Change color of price from WooCommerce block #296321
    Stefano
    Keymaster

    Hi, saving the Newsletter main settings, you should see an update notice for the Woocommerce Addon: the new block has an improved layout (spacing) and the control of the price font. Some elements are generated by wooc directly we’re looking at how to control them.

    in reply to: Bad Looking #296320
    Stefano
    Keymaster

    Hi, if you find out which device but particularly on which email client we can try to check the problem. Some old email clients do not use the responsive rules and try to fit a “large” email zooming out.
    gmail when used to read emails from non-gmail accounts can ignore the responsive rules, for example.
    The newsletter has been created with the composer?

    in reply to: newsletter style output #296241
    Stefano
    Keymaster

    Note: using the free text block you need to set the colors of the link directly in the editor, since the global style are not always applied by email clients (for example by gmail when showing emails for a non-google account).

    in reply to: newsletter style output #296240
    Stefano
    Keymaster

    Hi, if you use a free text block, be sure to select the text and set the font using the top selectors. When it starts the editor does not apply correctly the styles.
    If possible send a test to test@thenewsletterplugin.com so I can check the email source: every paragraph should have its own inline style.

    Stefano
    Keymaster

    Hi, be sure in the subscriber list panel there are no filters active.

    in reply to: is using smtp better #296144
    Stefano
    Keymaster

    Hi, to use the SMTP you need an SMTP service. Your provider has this service if it provides event the mailboxes for your domain, or it can be bought from Mailgun, Mailjet, Sendgrid, and so on.
    About the speed, probably even the SMTP service of your provider performs better than the “native” email capability provided with the simple hosting, you should just try.
    To use an SMTP, install an SMTP plugin, like wp mail SMTP: it is more flexible than our SMTP addon, and ALL emails sent by your site are delivered via the configured SMTP.

    in reply to: Weird entries from random emails #296116
    Stefano
    Keymaster

    Could be a bot. If you use the double opt in those entries should remain unconfirmed.

    in reply to: Batch Remove from Autoresponder #296112
    Stefano
    Keymaster

    That is a problem. Reimport the same subscribers in update mode and set a new temporary list to them all so you can easily identify them.
    Delete those subscribers using the Subscribers/Maintenance panel, filtering by the new temporary list.
    Reimport with the correct list.

    in reply to: Newsletter Photos not displaying on mobile version #296109
    Stefano
    Keymaster

    Hi, the mobile device is an iphone? Can you send yourself a test from the System/Delivery panel of the Newsletter plugin and check if the images are shown?

    in reply to: unregistered users #295929
    Stefano
    Keymaster

    Ciao, non è possibile che un sottoscrittore in stato “unsubscribed” riceva le email, il sistema di spedizione lo filtra in origine. Da cosa avete dedotto questo comportamento? E’ importante per noi capirlo per trovare eventuali problemi.

    Stefano
    Keymaster

    Hi, our CF7 integration addon is installed?

    in reply to: Blog Posts – Excerpt words – Recommended max #295923
    Stefano
    Keymaster

    There is not recommended max, it depends on your contents, font size, and so on.

    in reply to: Multiple subscribers with the same email address #295922
    Stefano
    Keymaster

    Hi, tracking is connected to the subscriber (by its id), so if you change the lists of that subscriber without deleting it, the tracing continues to work. Lists in the Newsletter plugin are not containers but are more like “options” of the subscribers.

    in reply to: Feature Request – Gutenberg Blocks as Editor #295921
    Stefano
    Keymaster

    The native ones can generate complex HTML, without online styles (Gutenberg has tons of styles for its native blocks). I think it would be an incredible effort and, the main problem is the maintenance. 🙁

    Stefano
    Keymaster

    Hi, Google does not allow anymore the use of POP3. You should use a dedicated mailbox provided by your provider and the best choice is to use a mailbox in the same domain as the sender address.

    in reply to: Entering the value of the city field in an email #295919
    Stefano
    Keymaster

    Hi, there is not placeholder for that field. Anyway, note that is an unreliable field: the city is computed from the IP address and mobile IP can result in a city hundreds of kilometers away from the subscriber.
    We have an internal discussion about removing it. 🙂

    in reply to: Syncing user roles with list #295918
    Stefano
    Keymaster

    Hi, the addon has not that specific feature.

    Stefano
    Keymaster

    Actually not, we’re going to add this feature as part of the Forms Designer Addon. Instead of having a custom message per list (since a form can be connected to more lists), the message can be customized per subscriber flow.

    in reply to: Events calendar block shows “no new events” #295914
    Stefano
    Keymaster

    Hi, we fixed it changing the way the events are extracted.

    in reply to: One list is not delivering properly #295734
    Stefano
    Keymaster

    Hi, the number reported in the lists management panel counts even the unsubscribed, unconfirmed, and so on, probably that list has only 2000+ subscribers which are confirmed.
    Yes, the number reported should be more clear in the lists panel. Try to check the number on the “subscriber statistics” panel, so we can see if the problem is the subscribers’ status.

    in reply to: Issues with Latest Updates #295732
    Stefano
    Keymaster

    Hi, thank you for reporting, it’s a bug. Please update the addon to version 1.2.2 (save the Newsletter General settings if you do not see the update notice).
    If possible, for issues like that one, open a ticket so we can see it immediately and can solve the problem asap.
    🙂

    in reply to: One list is not delivering properly #295635
    Stefano
    Keymaster

    Hi, we need some more details to try to help. How do you determine only 10% of the contacts are processed? When you prepare the email and set the filters, how many contacts are counted?

    in reply to: Is the cron service available for free accounts? #295576
    Stefano
    Keymaster

    Hi, no the cron service is reserved for customers, anyway, you can use the corn from the panel of your provider, if available, or other corn services as well. Here you can fine some possible solutions: https://www.thenewsletterplugin.com/documentation/troubleshooting/newsletter-delivery-engine/

    in reply to: Custom HTML subscription #295575
    Stefano
    Keymaster

    Yes, here there is the documentation on field names to collect even extra profile fields. Remember to reference the profile by number and to be sure the profile field is defined as “public” to be collected from a form.

    https://www.thenewsletterplugin.com/documentation/subscription/newsletter-forms/

    in reply to: unregistered users #295507
    Stefano
    Keymaster

    Hi, it’s correct, unconfirmed is when a subscriber subscribes but does not complete the subscription activating it (when the double opt-in is active) while unsubscribed is when it asks to not receive newsletters anymore.

    Both the unconfirmed and unsubscribed DO NOT receive the newsletter, there is a main filter to avoid that.
    When someone clicks the unsubscribe link, it is directed to the dedicated newsletter page the one configured in the Newsletter main settings,a nd that page needs to contain only the [newsletter] shortcode otherwise the messages are not shown correctly.

    in reply to: fields double on subscription page #295501
    Stefano
    Keymaster

    Hi, that is a problem with the German translation directly from translate.wordpress.org. Simply, enter the profile configuration panel of Newsletter and delete the double {profile_form} code you should see.

    in reply to: Subscribers List is unable to export #295387
    Stefano
    Keymaster

    Hi, have you a very big list? Could be the server is not able to process it completely.

    Stefano
    Keymaster

    We have the Contact Form 7 addon to capture the form submission to register the data as subscribers. Or you can write a bit of code to use the CF7 hooks and get the data to be registered into the Newsletter plugin database.

    in reply to: Events calendar block shows “no new events” #295055
    Stefano
    Keymaster

    Hi, check if the new addon version resolves the problem, please. To see it, save the Newsletter plugin main options and then you should have an update notice for our addon.

    Thank you!

    in reply to: Events calendar block shows “no new events” #294993
    Stefano
    Keymaster

    With the collaboration of another customer using the pro version of Events Calendar, we asked for support directly to Tribe to understand why the same code on the free version is ok and on the pro version it is not.
    If you want to send a support request to solicit an answer, open a ticket so I can share it with you the support request to send.

    in reply to: newsletter mails blocked to a certain domain #294930
    Stefano
    Keymaster

    Hi, probably it’s a spam filter on that domain, you should ask them to check the spam folder to see if, at least, the email is received. If not, it is probably dropped. There is not much you can do if they have your domain or sending IP in their blacklist.
    You can try to use an SMTP service if your provider gives you the mailboxes for your domain or a delivery service like SendGrid, Amazon SES, Mailgun, …
    See more here: https://www.thenewsletterplugin.com/documentation/troubleshooting/

    in reply to: Would like to include custom fields in automated newsletter #294929
    Stefano
    Keymaster

    Hi, no it is not possible right now, you should code a custom block: https://www.thenewsletterplugin.com/documentation/developers/dev-composer-blocks/

    in reply to: Feature Request – Gutenberg Blocks as Editor #294927
    Stefano
    Keymaster

    A note: it could be possible to use the Gutenberg technology and activate specific customized blocks yo build a newsletter (another known plugin seems to work this way ;-).

    in reply to: Feature Request – Gutenberg Blocks as Editor #294926
    Stefano
    Keymaster

    Hi, we evaluated it initially, but Gutenberg was continuously evolving and changing. Anyway, the real problem is this: blocks designed for web pages do not work on emails. Emails need a lot of tables the keep the formatting on every email client, so using Gutenberg means reprocessing all blocks to make the email-ready (if possible, I don’t know).
    Not only: all the custom blocks from themes and plugins won’t work on email clients (structure, missing CSS, and so on)… it would be a disaster 🙂

    in reply to: Blog Posts – Excerpt words – Recommended max #294925
    Stefano
    Keymaster

    Hi, the default should not be that long, usually, 20 words are enough. Probably it is 200 characters, or we made a mistake setting the default values.

    in reply to: Multiple subscribers with the same email address #294823
    Stefano
    Keymaster

    An email address can be part of multiple lists, so yes, it is possible. When someone registers with an already present email address, the profile is updated. Having different forms “connected” to different lists can be a way to proceed.
    Of course, multiple subscription option must be enabled on the subscription configuration panel.

    in reply to: extended statistics of AUTOMATED NEWSLETTERS #294795
    Stefano
    Keymaster

    Hi, every Automated channel has a button to see the list of sent newsletter and for each you have the stats panel as for regular emails.

    in reply to: 406 Not Acceptable #294770
    Stefano
    Keymaster

    With release 7.6.0 we addressed that problem and tried to “bypass” that false positive of mod_security.

    in reply to: admin panel and the color scheme #294769
    Stefano
    Keymaster

    I can confirm we’re already working on a total redesign of the admin side. I don’t know right now how much time we need to make the new design stable, but I hope in mo more than two months.

    in reply to: Toggle switch for mail delivery services #294768
    Stefano
    Keymaster

    It is not “stored” the addons register themself to be used as mailer. Of course, only one is used by Newsletter.
    If you want to enable just one, automatically, the best option is to keep only one active at time, using for example wp-cli to deactivate and activate the respective plugins.

    in reply to: stats: see the clicks user based #294751
    Stefano
    Keymaster

    The Reports addon has the option to retarget who clicked a link adding them to a list.

    in reply to: Maximum emails per hour. #294750
    Stefano
    Keymaster

    You can set the max speed on Newsletter main settings. It’s not possible to say the max speed you can reach, it depends on how much time is required to send a single email via PHP.

    Stefano
    Keymaster

    Hi, it’s the pro version of tribe calendar, we don’t know why it is happening. A few users opened a ticket with them, but no answers by now.

    in reply to: Ending up in Gmail PROMOTIONS folder #294674
    Stefano
    Keymaster

    Hi, there is no way to control how gmail decides to classify emails. Probably removing the “bulk” from the header can help, but is a way to be classified as spam when many newsletters are sent.
    Try to install our addon for office 365 which removes all the headers, maybe it helps.

    in reply to: Permission for authors #294673
    Stefano
    Keymaster

    Hi,
    no, we haven’t a fine control of the access for authors, sorry.

    Stefano
    Keymaster

    Hi, actually we do have not an option to limit the popup on specific pages.

    in reply to: Newsletter sent out blank? #294558
    Stefano
    Keymaster

    Hi, the page reloads with blank content could be due to the “mod_security” component of your hosting space, sometimes we experienced that. The mod_security blocks the saving believing that content is a hack attempt (of course it is not).
    This week we release an update to try to address that problem.
    A note: the mod_security does not block always the saving, it depends on the newsletter content, so that problem can appear randomly.

    in reply to: Plugin Updates #294557
    Stefano
    Keymaster

    Hi, the main plugin, Newsletter, freely available from wp.org, has no license bindings so you can get updated forever from wp.org when we publish them. Commercial addons can be updated for the time related to your license (we have yearly licenses and three years renewal licenses, right now – but it’s subject to change, of course).
    All that is clearly stated on the pricing page where is even specified we do not apply for automatic recurring payments, but for any doubts, we are here to support before the purchase (and after, of course!).

    That is just a commercial choice: there are marketplaces where you get a license valid forever, there are companies that ask for recurring monthly payments, and so on. Maybe we can change in the future by offering a lifetime license, we’ve already discussed that.
    Thank you, Stefano.

    in reply to: Sending statistics #294435
    Stefano
    Keymaster

    Hi, those “report” is a diagnostic report, probably the data cannot be stored or has been deleted. Try to use the reset button to restore the dataset and then it should start to collect delivery stats once again.

    in reply to: Repeating Previous Content #294402
    Stefano
    Keymaster

    Hi, I suppose you’re referring to the Automated addon. I can suggest opening a ticket if you’re using that addon.
    Anyway the “posts block” has options to use all the articles it finds without filtering by date: it shows them when used in the Automated template configuration panel.

    in reply to: Is posible to do backup of newsletter plugin #294331
    Stefano
    Keymaster

    There is not a specific backup option in the plugin (the dataset could be very very large and involves many tables). Here are some directions: https://www.thenewsletterplugin.com/documentation/developers/backup-recovery/

    in reply to: WP Users Integration for editor role #294330
    Stefano
    Keymaster

    Hi, no, actually that addon can be used only by an administrator.

    in reply to: Webmaster: License free #294329
    Stefano
    Keymaster

    Hi, the free version can be used where you prefer. The license is useful to update the free addons.

    in reply to: Select which list to subscribe to on registration #294327
    Stefano
    Keymaster

    Hi, the integrations with wp registration and buddypress do not offer a way to add lists on the registration form, and even if those fields are added they won’t be processed.

    in reply to: Free and pro version mixed on multisite? #294313
    Stefano
    Keymaster

    Hi, the premium version is actually a set of plugins that add new functionalities, so you can activate them just in the subsites of interest.

    in reply to: How to change the sender email #294311
    Stefano
    Keymaster

    Probably the provider is forcing it to a specific value OR you have an SMTP plugin changing it on outgoing emails. Newsletter always uses the one set inside the main settings or the one set on the single newsletter configuration.

    in reply to: Dutch translation has some flaws #294306
    Stefano
    Keymaster

    Hi, thank you for reporting and for your willingness to fix the translations. They’re managed by the community at translate.wordpress.org, everyone can participate!

    in reply to: embeing vimeo #294305
    Stefano
    Keymaster

    Hi, that is not possible due to the limitations of email clients.

    in reply to: Reports by email #294303
    Stefano
    Keymaster

    Hi, actually there is not such a feature, sorry.

    in reply to: Newsletter inline image base64 not work #294301
    Stefano
    Keymaster

    It is correct, email clients do not display embedded images base64 encoded.

    Stefano
    Keymaster

    That is a problem harder to solve. DIVI registers those shortcodes only under some contexts. When the newsletter is generated, those shortcodes are not registered and WP is not able to clean them up.
    If they are present in your excerpt, let me know, since we try to cleanup the excerpt of the “posts block” from those shortcodes (not always that works…).

    in reply to: Send individual emails? #294298
    Stefano
    Keymaster

    Hi, no, there is no way to send a newsletter selecting a single subscriber.

    in reply to: UTM Codes #294297
    Stefano
    Keymaster

    Hi, no, we do not change the link or the tracking code and they should work. Probably something else is changing the UTM: are you sure they come from links in newsletters? If someone uses your links adding UTM they can scramble your Analytics data, there is no way to protect yourself from those kinds of bad actions (no one can…).

    in reply to: Export Subscribers #294296
    Stefano
    Keymaster

    If the provider has a copy of your site and database (usually they keep a copy for a while), you can ask them to get it and try to restore elsewhere the database.

    in reply to: Themes #294295
    Stefano
    Keymaster

    The composer has not a “theme”, just some preset with some blocks and colors. Maybe you’re using the old themes?

    in reply to: 406 Not Acceptable #294284
    Stefano
    Keymaster

    This is a block by your provider caused by a false positive of mod_security.

    in reply to: requisiti hosting #294280
    Stefano
    Keymaster

    Non è generalmente un problema di requisiti dell’hosting, ma del servizio di spedizione email. Se si usa direttamente quello di chi ospita il sito, va chiesto quali siano i limiti del servizio (normalmente una servizio base è incluso per le normali email inviate dal blog), ma se si devono spedire parecchie email conviene utilizzare un servizio esterno.

    in reply to: White Bar At Bottom #294278
    Stefano
    Keymaster

    Hi, probably it is a layout problem when rendered on those devices. The background has been set for the whole newsletter?

    in reply to: Sending to Gmail email address unable to received. #294258
    Stefano
    Keymaster

    Hi, that could be a block by Google on your domain or sending address, there no much you can do. Usually, the best solution is to move to an external mailing system, like an SMTP (your hosting provider probably provides even an SMTP server for the email address connected to your domain).
    You can connect your blog to that SMTP service using, for example, wp mail smtp, a free plugin.

    in reply to: Auto subscribe on order #294256
    Stefano
    Keymaster

    Yes, with our wooCommerce addon: https://www.thenewsletterplugin.com/woocommerce

    in reply to: Eventi-Calendario -Newsletter #294253
    Stefano
    Keymaster

    Abbiamo una integrazione con the events calendar e events manager che sono due plugin sia in versione free che pro. Per ognuno serve un addon in grado di estrarre gli eventi.

    in reply to: Text Block composer – image alignment issue #294238
    Stefano
    Keymaster

    Hi,
    that kind of alignment (CSS float) does not work on email clients (not in everyone at least) so it should not be used.

    in reply to: Selected list for subscription don’t work #294233
    Stefano
    Keymaster

    Hi,
    with “form=1” you’re calling a hand-coded form, other attributes are ignored. You need to add a hidden field:

    in reply to: exclude newsletter for subscribers in dashboard #294231
    Stefano
    Keymaster

    Hi,
    please check on Newsletter main settings if you enabled the plugin management even for the subscriber role.

    in reply to: Cron issue #294036
    Stefano
    Keymaster

    Are you using the wp-crontrol plugin? If nothing is reported, it could have been a temporary problem.
    Please check even the “site health” panel of WP to see if it is reporting “late scheduled tasks”.

    in reply to: Unsubscribe Link does not work in the real newsletter modus #294033
    Stefano
    Keymaster

    I’ve received the test and the links are ok. They lead the subscriber to the /newsletter page on your site but apparently, that page does not contain the [newsletter] shortcode, so the messages are not shown.
    Please check if that page is correctly configured, it should contain only the [newsletter] shortcode.

    in reply to: Unsubscribe Link does not work in the real newsletter modus #294021
    Stefano
    Keymaster

    Hi, those kinds of links must be generated “per subscriber” since they contain the subscriber’s token. What kind of link is received when you send the newsletter? Can you create a newsletter, and add test @ thenewsletterplugin . com as “test” subscriber and send a test to that address?

    in reply to: I lost my list of subscribers #293944
    Stefano
    Keymaster

    Hi, if you’re sure you lost them, you can restore the backup on a different database and copy only the tables wp_newsletter*. Before doing anything, check if in your current database, there are those tables and check if they’re empty or not.

    in reply to: Headles WordPress confirming subscription #293816
    Stefano
    Keymaster

    I think it is more simple to set the opt in mode (see the subscription configuration) as “single opt” in so confirmation is immediate.

    in reply to: Critical Error – Urgend – please help #293813
    Stefano
    Keymaster

    If you have a fatal error by WP, it is usually logged in the server error logs. WP usually sends an email to the admin address with the error details, but probably in your case is the email action triggering the fatal condition. Check the error logs (possibly ask the provider how to access them).

    in reply to: reset bounces #293810
    Stefano
    Keymaster

    Hi, you need to run a query like:
    update wp_newsletter set status = ‘C’ where status = ‘ B’

    in reply to: Display problem #293809
    Stefano
    Keymaster

    Hi, probably is a style conflict with another plugin. Could you share a screenshot, please?

    in reply to: Sending Options – Lists – No results found #293808
    Stefano
    Keymaster

    Hi, thank you for reporting. If possible open a request to that plugin support asking to inject their JS code only on their own admin pages.
    Thank you!

    in reply to: Add specific link to the Top Banner on newsletter #293807
    Stefano
    Keymaster

    Hi, if you use the composer to create the automated template you can add, for example, an image as the top element. If you’re using an old theme for Automated, you should switch to the composer creating a new channel.

    in reply to: Subscribers issue #293806
    Stefano
    Keymaster

    Hi, check if the panel listing the subscribers has one or more filter set.

    in reply to: How do I delete all plugin data and start COMPLETELY over #293805
    Stefano
    Keymaster
    Stefano
    Keymaster

    Hi, if you’re testing the template in Automated, links are not active since the template is not a real email. They work when a real newsletter is generated.

    in reply to: how many mail per day can u send? #293803
    Stefano
    Keymaster

    So, you can set the speed on the Newsletter plugin’s main setting to a value that is compatible with that limit.
    Stefano.

    in reply to: Send private posts #293699
    Stefano
    Keymaster

    Hi, it is actually not possible with the standard block. It should be modified by changing the set of filters prepared for WP_Query which is the WP service to get the posts. The post_status filter should be changed to include “publish” and “private”.

    in reply to: how many mail per day can u send? #293698
    Stefano
    Keymaster

    Hi, the number of emails you can send in a day or per hour depends on your provider. You do not need to split the sending, just set the speed allowed by your provider in the Newsletter main settings and that speed will be respected.

    in reply to: When trying to save or test mail, it shoows 403 #293231
    Stefano
    Keymaster

    Hi, your provider has the mod_security active blocking the saving of newsletters since they contain a full HTML page. Ask them to try to disable it at least for the admin side of WP.

    in reply to: Interests groups #289660
    Stefano
    Keymaster

    Actually not, but when you send a newsletter you can set it to be sent to all subscriber in list A and all subscriber in list B.

    in reply to: Extra Profile Fields > Insert in Mail #289659
    Stefano
    Keymaster
    in reply to: Adding Subscribers During Sending #289656
    Stefano
    Keymaster

    Since the subscribers are added “at the end” of the full subscribers’ database, they’ll receive the newsletter if the newsletter is still in “sending” status.

    in reply to: bounced emails and complain reports #289588
    Stefano
    Keymaster

    It’s correct, the notification of bounce and complaints is implemented only in our amazon addon and sending with the amazon API.

    in reply to: Amazon SES plugin (o no), limiti? #289587
    Stefano
    Keymaster

    Puoi usare un plugin di SMTP e i parametri SMTP di Amazon. Amazon EC2 sono i loro server a pagamento, non c’entrano con il modo in cui si spedisce.

    in reply to: Apple blocking remote images #289586
    Stefano
    Keymaster

    No, there are no settings on the Newsletter plugin. That is a bahavior of Apple, we cannot change or control it.

    Stefano
    Keymaster

    Hi, the account “Sieste” used to write this support request is not associated with a license. Probably it has been associated to another email address.
    Can you write me privately at stefano [at] thenewsletterplugin.com so we can find out which is the correct account?
    Thank you!

    in reply to: Sending images (inline) broken #289174
    Stefano
    Keymaster

    Hi, images cannot be pasted into a newsletter (like when you send an email with your email client). The composer has a block to add an image that needs to be stored in your blog.

    in reply to: Plugin Keeps the Media Library From Loading #289018
    Stefano
    Keymaster

    Hi, can you explain better point 1? The Newsletter plugin needs the media library of WP, what is happening in your installation? Is the media manager not appearing when you need to pen it from the composer to select an image?

    Stefano
    Keymaster

    Simple, move to the “lists” panel in our admin side and define the lists you want to be selectable during the subscription, or assigned automatically.

    Stefano
    Keymaster

    Simple, move to the “lists” panel in our admin side and define the lists you want to be selectable during the subscription, or assigned automatically.

    in reply to: Homepage Widget #288896
    Stefano
    Keymaster

    Hi, try to change the configuration of the form in our main admin page Subscription/Subscription form fields.
    But the widget could be part of the theme, in that case, it could not work and you should ask the theme developers.

    in reply to: Plugin not sending #288895
    Stefano
    Keymaster

    That is a provider block, ask it to remove the mod_security and white list the admin side of the blog.

    in reply to: If query on salutation {title} #288894
    Stefano
    Keymaster

    We have no support for conditional tags, sorry.

    in reply to: Error while installing #288893
    Stefano
    Keymaster

    Hi, get the addon from this site, account page, as a zip and upload it in your site adding a new plugin and selecting the upload method.

    in reply to: Using Newsletter to restyle login, registration, new order #288892
    Stefano
    Keymaster

    No, we have no support for this kind of email design.

    in reply to: Background Image for text block #288891
    Stefano
    Keymaster

    There is no support for a background image right now.

    in reply to: domain blocking #288889
    Stefano
    Keymaster

    Actually there is no way to change that message.

    in reply to: be careful with this message #288846
    Stefano
    Keymaster

    It’s google, the only thing you can do is to verify your provider configured the SPF record to allow your site server to send emails with your domain. This is usually the main problem.

    in reply to: Quotes in Outlook Newsletter #288793
    Stefano
    Keymaster

    Check if you have a plugin to decorate the standard wordpress emails (like the password recovery, new users and so on).

    in reply to: Image file type #288530
    Stefano
    Keymaster

    some email clients do not support the webp format. Are you having problems even while composing?

    in reply to: Connection error with BOUNCE MANAGEMENT addon #288528
    Stefano
    Keymaster

    That error means the provider does not allow the connection to the pop3 service, you should ask them to unlock that connection.

    in reply to: Change language #288527
    Stefano
    Keymaster

    Everything can be translated from the admin panels, see the subscription and subscription form fields panel.

    in reply to: Can´t install Addons #288526
    Stefano
    Keymaster

    Get the addons from your account page on this site. Download the ZIP file for the selected addon, and upload it from your blog plugins panel.

    Stefano
    Keymaster

    If you imported the password as extra field, why not use the {profile_1} tag, assumed the password has been assigned to the profile number 1?

    in reply to: not everyone from subscribed get my newsletter #288145
    Stefano
    Keymaster

    How, can you share what is reported in the logs that give evidence of the undelivered emails? Just to understand if it’s an SMTP limit, for example.

    in reply to: Restrict delivery time #288090
    Stefano
    Keymaster

    Hi, we do not have an option to limit the delivery for those timeframes.

    in reply to: Send Newsletter to newly signed-up users #287806
    Stefano
    Keymaster

    The autoresponder addon can be used to create an email series (possibly with only one email) and configured to send the first email just after the subscription.

    in reply to: Targeted subscribers: 0 #287714
    Stefano
    Keymaster

    Hi, please, check if the newsletter has filters active in the targeting panel.

    in reply to: Biggest list size? #287687
    Stefano
    Keymaster

    Hi, the limit is dictated by your server and mail delivery service. As an example, I manage a customer site with 300.000 subscribers and there is a weekly newsletter sent via Amazon SES.

    Stefano
    Keymaster

    Hi, the “footer” block has the ubsubscription link (actually a tag that is replaced with the correct URL different to each subscriber). Where are you seeing only the blog URL?

    in reply to: Export configurations/settings #287683
    Stefano
    Keymaster

    Actually not, but I’ll forward your idea to the team.

    Stefano
    Keymaster

    The archive addon does not support list filtering since a newsletter is not associated with a list, but can contain many list-related filters.

    in reply to: how to set wp newsletter plugin to send all emails #287681
    Stefano
    Keymaster

    You can install an SMTP plugin, connect it to mailgun and all emails go through it, even the one by Newsletter. In that case, do not activate the SMTP option/addon of Newsletter or the Mailgun addon.

    in reply to: Import subscribers and assign them lists #287680
    Stefano
    Keymaster

    When you import you can assign the list in the mapping panel, the list cannot be specific on the CSV.

    in reply to: max width of email #287679
    Stefano
    Keymaster

    Actually not, it is not possible. We prepared the code to deal with different size, but it is not fully ready (there are blocks computing some values based on the standard 600px width – they’ll get messed up).

Viewing 200 posts - 401 through 600 (of 2,264 total)