I updated plugin and now i can't edit pages with Beaver

When i click on Beaver it will take me to the site without editing options - Like im browsing the site normally

Generally that is because of one of the following:

  1. Some sort of JS error (error in console or even including more than 1 version of jQuery on the site)

  2. The theme not calling the wp footer in the footer.php theme template

Thank you, how am i able to identify the error and find a solution?

I know it’s sometime ago now, but it’s getting quite critical that i can’t edit my Site at all.

Does this error have anything to do with my issue?

DevTools failed to load SourceMap: Could not load content for https://www.staerfeldt.dk/wp-content/themes/kale/assets/css/bootstrap.min.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE

No.

You need to have the console open, then refresh the page … all that warning is showing is your theme has not included the bootstrap css map file, which is used by developers. Its just a warning.

Now that you have given us a URL its clear to see that css/js in the uploads folder is blocked. Its your host one.com, they add a htaccess file in the uploads folder to block ALL js and css if it isn’t created with visual composer, which is the only page builder tool they support You need to remove that htaccess file, or get them to do it.

Thank you so much, im gonna look into this asap :slight_smile:

If i delete the file, it will get me error 404 on every page.

Can i somehow allow css/js in htaccess code?

This is the file:
# -FrontPage-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>

# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

yea, thats the wrong htaccess file.

the one you are looking for is in wp-content/uploads folder.