nicw.a11n
Forum Replies Created
-
Awesome @miyagibonsai – I will mark this thread as resolved. Should you need any more help, you know where to find us 🙂
I’ve checked whatsmydns.net for your site’s DNS entries and I’ve not been able to find any of them. Can you try verifying your DNS settings again, as you may need to reset them.
You will find this in the Sender Domain Authentication section of the documentation here: https://kb.mailpoet.com/article/188-how-to-set-up-mailpoet-sending-service
Hi @graichura
I agree, the implementation does seem klunky, and our developers do have the shortcodes on their list of issues to address.
I found that using a bit of CSS to hide the select dropdown left the selections in the default “subscribed” setting, which meant that lists not subscribed to are off, while lists that are subscribed to are on.
.mailpoet-manage-subscription .mailpoet_select_label, .mailpoet-manage-subscription .mailpoet_select{ display:none; }This seemed to work well and allows an opportunity to reword the instructions, perhaps?
I’ve tried several different way to replicate this, in both Firefox and Chrome, and have not been able to. I took a screen capture of one attempt (in Firefox, where I did not scroll at all).
None of the attempts ended with the page scrolling. Possibly you’ve corrected the problem already.
However, I am seeing a JavaScript error
Uncaught Error: Syntax error, unrecognized expression: a.ultp-pagination, a[href*=“/page/”]This error is triggered in the Loftloader Pro plugin.
Hi @klexi
Thank you for the input. Our team has in fact had the introduction of trace IDs to the UI and reporting for some time. An issue is open here on the public repository.
There are two possible routes to take on this – the one you’ve suggested, and the one mentioned in the repository, where we add the trace ID to reporting on the site and to the CSV files obtained from the site, allowing reconciliation.
Bank statement descriptors can be unreliable for this, as statement descriptors can vary somewhat from institution to institution and from country to country. But the trace ID should be a constant.
Thank you for the reminder on this, and I’ll be reaching out to the team to ensure this is on their radar.
Thanks for reaching out on this. I see that your subscription was approved, as we did receive your message on this. Please let us know if you have any further questions. We will be happy to help.
Hi @johnclearmoonstudios
There are two steps to removing WooCommerce subscribers from the list. The first is to uncheck the subscribe option in settings
Link to image: https://d.pr/i/JCdi2IThe second is to go to MailPoet > Lists and force sync the WooCommerce Customers list.
Have you carried out both these steps?
Hi @mylenep,
In future, we’d recommend starting a new thread with your question. This makes it easier for us to manage, and for other users to find answers in the forum.
The content blocks in the newsletter are not compatible with Trabe Events – but you can extend the newsletter customizer by creating your own custom shortcodes to display eventws in your MailPoet newsletter by following the instructions in the knowledge base article here: https://kb.mailpoet.com/article/160-create-a-custom-shortcode
Hi @gabyrau
You’ll need to make sure that the email address you set up in your default from address setting is authorized to send. If you log into MailPoet, it should appear in the Authorized Emails list.
The mail address I set up for mailpoet is also used for WordPress notifications. Why? I don’t want that WP notifications have to go via Mailpoet sending service. I already tried to overwrite this with
addfilter('wp_mail_from', ...), but this did not work (except if Mailpoet is switched off).When MailPoet is selected as your sending service, all mails are routed via MailPoet, and get the default sender address as set up in your MailPoet > Settings > Basic tab.
Remember, when sending from MailPoet, attachments, CCs, BCCs and multiple to addresses are not supported.
By default, the slide in should not trigger a scroll on the page, and this is probably occurring because of a conflict with your theme. Could you try disabling animation, to see if this helps?
This is set in the form preview as in the screenshot below.
Link to image: https://d.pr/i/Hot80nForum: Plugins
In reply to: [WooCommerce] Problems with Woocommerce 8.1.1Thank you for the video which explains exactly what is occurring. We’ve had no similar reports, however, I would like to ask if the attributes remain present after the update.
Please go through each step as before – but at the beginning, could we check to see if the attribute is present, and at the end, could we check this again please?
Link to image: https://d.pr/i/fhiqvcIt looks to me as if the attribute itself is missing after the update.
Forum: Plugins
In reply to: [WooCommerce] Syntax Error – Location and Suggested FixI’ve been in touch with our engineers on this, and it appears that trailing commas are acceptable in function calls from PHP 7.3 upwards. Since WooCommerce requires PHP 7.4, therefore, the trailing commas might not be an issue after all.
The RFC can be found here: https://wiki.php.net/rfc/trailing-comma-function-calls
Researching this, I found these two links which you might find interesting
https://github.com/squizlabs/PHP_CodeSniffer/issues/203
https://github.com/WordPress/WordPress-Coding-Standards/issues/1363WordPress also works with PHP 5.6.20+ and MySQL 5.0+, but these versions have reached official End Of Life and as such may expose your site to security vulnerabilities.
This is a fairly complex development topic. I’m going to leave it open for a bit to see if anyone is able to chime in to help you out.
I can also recommend the WooCommerce Developer Resources Portal for resources on developing for WooCommerce.
You can also visit the WooCommerce Facebook group or the
#developerschannel of the WooCommerce Community Slack. We’re lucky to have a great community of open-source developers for WooCommerce, and many of our developers hang out there, as well.Forum: Plugins
In reply to: [WooCommerce] Syntax Error – Location and Suggested FixYou’re quite right of course – I read the use-case completely incorrectly, and the dangling comma in the function call is an error!
Currently there are no issues open on this, but I can confirm that our developers are aware of this as an issue, having had one reach out to me about this post.After some experimentation, it’s going to be difficult – as you suggest – to identify all occurrences. I’ll be consulting with the developers on this, on how best to raise this as an issue in the repository.
Thank you for the feedback, and the time you’ve spent on this!
Forum: Plugins
In reply to: [WooCommerce] Syntax Error – Location and Suggested FixWooCommerce applies WordPress Coding Standards, and all our code is run through the WPCS code sniffer before release. WordPress coding standards specifically mentions the last comma in an array.
You can find that recommendation here: https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/#indentation
This is in keeping with modern PHP standards, first proposed in 2015 and implemented in 2017 in PHP 7.2
Forum: Plugins
In reply to: [WooCommerce] Thumbnail sizes not reflected correctlyHi @simooo
Have you tried the following when fetching your thumbnail?
$product->get_image( 'woocommerce_thumbnail' );The Product Category Block gets it’s image The image is produced by the
woocommerce_subcategory_thumbnail()function. This sets the size of the image using the filtersubcategory_archive_thumbnail_size. The default iswoocommerce_thumbnailGenerally, it seems that your
woocommerce_thumbnailis set to 150px somewhere by a theme or plugin.There is a
$dimensionsvariable which is used when checking sizes.$dimensions = wc_get_image_size( 'woocommerce_thumbnail' );This returns an array. The height value of this variable is empty when printed:
Array ( [width] => 150 [height] => [crop] => 0 )This is a fairly complex development topic. I’m going to leave it open for a bit to see if anyone is able to chime in to help you out.
I can also recommend the WooCommerce Developer Resources Portal for resources on developing for WooCommerce.
You can also visit the WooCommerce Facebook group or the
#developerschannel of the WooCommerce Community Slack. We’re lucky to have a great community of open-source developers for WooCommerce, and many of our developers hang out there, as well.