Jamie
Forum Replies Created
-
Since you’ve also submitted a ticket to our help desk, we are going to reply here for anyone else and then close this ticket so we don’t have to keep replying in two places.
The unsafe-eval requirement comes from the WordPress media library, which depends on Backbone.js and Underscore.js. This is a WordPress core dependency that applies whenever the media picker is used in the editor.
Since the editor is only ever accessed by logged-in administrators, you can scope unsafe-eval to editor URLs only like something like this in .htaccess:
<If "%{QUERY_STRING} =~ /fl_builder_ui/"> Header always set Content-Security-Policy "default-src 'self' 'unsafe-inline' http: https: data:; script-src 'self' 'unsafe-inline' 'unsafe-eval' http: https: data:; style-src 'self' 'unsafe-inline' http: https: data:" </If> <Else> Header always set Content-Security-Policy "default-src 'self' 'unsafe-inline' http: https: data:; script-src 'self' 'unsafe-inline' http: https: data:; style-src 'self' 'unsafe-inline' http: https: data:" </Else>That’s great to hear @jimithing007! Thanks for letting us know that the new version resolved your issue.
Good news! A fix for this is in UABB Lite now and a fix for the Pro version of UABB is coming as well next week.
Hello @jimithing007, those buttons look to us like they are coming from Ultimate Add-ons for Beaver Builder and not PowerPack. I would recommend you reach out to them for assistance. We will reach out to them directly too, to see if they are aware of this with 2.10.
Forum: Plugins
In reply to: [Customizer Export/Import] Compatible with WordPress 6.9You’re quite welcome @cmejard!
Forum: Plugins
In reply to: [Customizer Export/Import] Compatible with WordPress 6.9Thanks for the heads up. Indeed it is and we’ve just updated it to reflect that.
Forum: Fixing WordPress
In reply to: WordPress Site Does Not Show Full Width When Logged InWhen you are logged and you see your website like in the logged in screenshot, do you see any mention on the page of a critical error? If not, can you screenshot the bottom half of the page and post that so we can see?
Forum: Fixing WordPress
In reply to: WordPress Site Does Not Show Full Width When Logged InThe screenshot of logged in looks like there is a critical/fatal error. Can you check the server error_log and look for a fatal PHP error?
You could also install a plugin like Debug Log Manager to see the fatal error in most cases.
Our builder is affected by improper HTML such as unclosed elements like this because it prevents the necessary scripts for our product and even WordPress from loading in the footer.
We’re not able to tell you exactly what the problem is as that would require actually seeing the theme code.
You can look in your theme template files for the markup and see if there is a missing closing markup tag. You can take screenshots of your theme template files and we can try to help you locate the issue but the issue is not related to a problem with Beaver Builder from what we can tell.
What we’d recommend to confirm it’s a conflict as we suspect first, please attempt to disable all plugins (except Beaver Builder Lite), and use one of the default (Twenty*) themes. If the problem goes away, enable your theme again instead to see if the issue comes back. If it does, then you’ve confirmed the issue is with your theme. If the problem does not come back after re-enabling your theme, then you can activate your other plugins, one at a time, checking to see if the problem comes back after each activation.
If you can install plugins, you can install and activate “Health Check”: https://wordpress.org/plugins/health-check/
It will add some additional features under the menu item under Tools > Site Health.
On its troubleshooting tab, you can Enable Troubleshooting Mode. This will disable all plugins, switch to a standard WordPress theme (if available), allow you to turn your plugins on and off and switch between themes, without affecting normal visitors to your site. This allows you to test for various compatibility issues. You would enable Beaver Builder Lite in troubleshooting mode to test to see if it’s a plugin or theme compatibility issue.There’s a more detailed description about how to use the Health Check plugin and its Troubleshooting Mode at https://make.wordpress.org/support/handbook/appendix/troubleshooting-using-the-health-check/
Hey Oliver,
No worries at all but thanks for taking the time to let us know you found what it was related to. Hope you have a great weekend!
Were you editing an archive with the block editor at the time so using Full Site Editing?
Were you using any module blocks?
- This reply was modified 5 months, 3 weeks ago by Jamie.
We’re actually not able to include the code change you used as that would prevent Module Blocks from working since that check will always be false in the Block Editor.
From what we can tell of the error, it looks like you’d have to be using the block editor on something that does not have a post ID to trigger the error.
You can view the source of that page and see that the markup ends without being properly closed. It looks to be a div with the class of “footer-copyright” that is unclosed.
https://validator.w3.org/nu/?doc=https%3A%2F%2Fswwoodcarvers.org%2Fmeetings%2F
- This reply was modified 5 months, 3 weeks ago by Jamie.
Hello Brad,
There’s a few things that could be going wrong here.
There looks to be an HTML/markup error on the linked page when you view the source so you’ll want to double check that. If all other pages are using the same theme template, the one for Single Pages, that would make sense why it wouldn’t be working.
The unclosed element (div) would prevent the WordPress footer from loading properly which Beaver Builder relies on to be able to load properly.
It was determined by the user that this CSS in the user’s theme was the cause as it targets all divs and all buttons.
a, i, span, div, input, select, textarea, article, section, input[type=button], input[type=submit], button { -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }- This reply was modified 5 months, 4 weeks ago by Jamie.