Lukasz
Forum Replies Created
-
Forum: Plugins
In reply to: [Gutenberg] Remove column settings panelOkay great, thanks for the help!
Forum: Plugins
In reply to: [Gutenberg] Remove column settings panelhi @ellatrix thanks for replying,
I was thinking of removing the column settings, so a end user can not make modifications to the width through the range control, I prefer to just create my own column layouts that the user can pick from:
https://github.com/WordPress/gutenberg/pull/16129
Thanks!
Forum: Plugins
In reply to: [Pre-Publish Checklist] Feature request: Custom checklist per post typeNice plugin overall, but I noticed this limitation as well.
Forum: Fixing WordPress
In reply to: Unable to update my blog postsO wow that’s unexpected, but good to know, glad it worked out for you!
Forum: Fixing WordPress
In reply to: Unable to update my blog postsLots of block validation errors, check if you have any reusable blocks, you may have to remove them, also you may have to recreate the blocks. You may also have some custom html in there that is causing issues, when creating a new fresh page, is there any errors?
Forum: Fixing WordPress
In reply to: Unable to update my blog postsHow are you able to disable gutenberg plugin? Are you using another plugin to disable gutenberg?
If you have any JavaScript errors then it can cause gutenberg to fail(check dev console in chrome ctrl+shift+i), try disabling other plugins or themes to see if it helps.
Forum: Fixing WordPress
In reply to: MY SITE JUST BROKE and I cant even log into itYou need to disable wp-super-cache plugin, you can do this through sftp or contact your hosting provider to do it for you, something went wrong with that plugin.
Forum: Fixing WordPress
In reply to: I can’t upload images anymoreContact the plugin author for support “revslider”
Appears to be an issue with your plugin:https://gsbozan.ch/wp-content/plugins/revslider/public/assets/js/revolution.tools.min.js?ver=6.0
You can also try disabling the plugin and see if that helps.
Forum: Fixing WordPress
In reply to: Redirect from http to httpsAs mentioned above you’re server is running on NGINX, not APACHE, so you can’t use .htaccess
I would contact your hosting provider, or log into cpanel where there is a option to redirect all http traffic to https.
Also add this security header to your functions.php
/** * Adds an HSTS header to the response. * * @param array $headers The headers to filter. * @return array $headers The filtered headers. */ add_filter( 'wp_headers', function( $headers ) { $headers['Strict-Transport-Security'] = 'max-age=63072000'; // Or another max-age. return $headers; } );
“HTTP Strict-Transport-Security response header (often abbreviated as HSTS) lets a web site tell browsers that it should only be accessed using HTTPS”
Forum: Fixing WordPress
In reply to: Unable to update my blog postsAre you using the Gutenberg plugin and WordPress 5.0 or greater?
Thanks! no more missing images in IE11.
@gijo thanks for getting back..that’s interesting, I tried out your plugin and no images loaded in IE11, just blank space where the images should be.
I’m finding that new plugins that are being released with googles new native lazy load all have issues with IE for some reason.
Forum: Fixing WordPress
In reply to: Dynamic URLS ‘not found’Try to set your permalinks to “post name”:
As you can see in the image, the default setting will give you a non-pretty permalink, like yours above.
Forum: Fixing WordPress
In reply to: How to STOP the Dashboard insisting on Auto-Draft?Hi,
Don’t worry about auto-drafts for this reason:
Auto-drafts are automatically deleted after 7 days of going unused. They’re self-cleaning, basically. No need to worry about them.!
Forum: Plugins
In reply to: [Native Lazyload] jQueryYes it will work, this plugin uses vanilla JavaScript.