Simon Prosser
Forum Replies Created
-
Thank you, the fix looks good!
Looks like the new version from today uses the filter in the way I suggested now allowing people to opt in and add angle brackets to make the email rfc compliant.
You can close the PR now.
Im not sure I understand your fix.
In a previous support thread here it was said that you tried to add angle brackes before and had to remove them as it broke support for something else, so my PR added a filter to allow uses to add the brackets if the desired and leave the default as it was, I gave you a PR for that.
I downloaded the “beta” version and it looks like you are now adding the angle brackets anyway now so breaking backwards compatibility and the filter now does essentially nothing.
private function apply_default_headers( $message ) { /** * Filter the Message-ID addr-spec (unbracketed id@domain) before the RFC 5322 header is built. * * @since 3.9.2 * * @param string $addr_spec Message-ID without angle brackets. */ $addr_spec = apply_filters( 'post_smtp_message_id', $this->createMessageId() ); $addr_spec = trim( (string) $addr_spec ); $len = strlen( $addr_spec ); if ( $len >= 2 && '<' === $addr_spec[0] && '>' === substr( $addr_spec, -1 ) ) { $addr_spec = substr( $addr_spec, 1, -1 ); } $headers[] = 'Message-ID: <' . $addr_spec . '>'; $message->addHeaders( $headers ); }Forum: Plugins
In reply to: [Assistant - Every Day Productivity Apps] VulnerabilityThis was addressed in version 1.5.3
2.5.2.3 was release nearly 4 years ago, there have been 1000s of changes since then.
Without seeing the site I cant tell if the inline code is working and I cant see if you are just seeing insane caching. What did the vantam people say?
I’ll try again and word it differently:
When you view the page, are the assets loaded inline or are they urls to the uploads folder? Might help if you share the url.
When you view the page though, are the assets inline or not?
The docs say to go to the advanced settings and at the bottom is a toggle to render css/js inline, we added that option for people that have no control over their caching.
The three filters you originally posted are not part of any code in the plugin, chatGPT?
Firstly, where did you get those three filters from?
Hi there.
Your child theme is loading its own version of jquery-ui, this breaks the wp core version that Beaver Builder uses for its UI.
By activating the parent theme that duplicated library is not loaded and the UI loads normally.
Ok well weve had zero reports of this with just BB plugin active. You will need to open a ticket with us as there is only so much we can do here on public forums.
https://www.wpbeaverbuilder.com/contact/ I will keep an eye open for it.
Thats not really helpful, runchecked runtime.lasterror is usually an extension error in the browser from what ive read… Look for actual errors in read.
As for the url, cant really tell anything from the html source as its over optimised, all the scripts are minified (twice) and you have mod_pagespeed to boot.
So we are left with have you tried the following?
Disable the insane caching firstDisable plugins one by one.
Ok, well whats the errors in the browser console and whats the site url?
Are you using any WPD plugins, like wpd-additions?
Yea looks like there is more than one issue. We will be releasing a fix shortly.