Lukasz
Forum Replies Created
-
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.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Breadcrumbs in search resultsGreat thanks!
I gave it a shot, using bcn_display_list( false, true, false, true ) since it takes the same parameters as bcn_display but I still had to add $wp_query->is_singular = true; so it behaves as single post for each result:
global $wp_query; // backup. $old_singular_value = $wp_query->is_singular; // change. $wp_query->is_singular = true; if ( function_exists( 'bcn_display_list' ) ) : ?> <nav class="breadcrumbs" typeof="BreadcrumbList" vocab="https://schema.org/" aria-label="<?php esc_attr_e( 'breadcrumb' ); ?>"> <ol class="breadcrumb mb-1 small"> <?php bcn_display_list( false, true, false, true ); ?> </ol> </nav> <?php endif; // restore. $wp_query->is_singular = $old_singular_value;Also for anyone else wondering you then have to edit the search template in the plugin config to something like this:
<span property="itemListElement" typeof="ListItem"><a href="%link%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span> <span class="%type%">%htitle%</span>Forum: Plugins
In reply to: [Breadcrumb NavXT] don’t show final breadcrumbHere you go, Author offers few ways to do this:
https://ww.wp.xz.cn/support/topic/hiding-current-page-from-breadcrumbs-for-posts/
Forum: Plugins
In reply to: [Native Lazyload] Images not visible in Chrome 76I’ve tested the page with Twenty Nineteen and JavaScript turned off, and all images (from the NOSCRIPT tags) are loaded immediately (even if they’re several thousand pixels down the page).
I tried the same and had the same outcome, I also tried throttling the connection in chrome but all of the images still loaded. Static HTML pages loaded in WordPress seem to work.
They have already confirmed this issue in the support thread: