chillmen
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] Cumulative Layout Shift and litespeedHi,
In my case i lowered it to 0 (but the global score went worse):JS:
Load JS Deferred ==> OFF
Load Inline JS ==> After Dom ReadyCSS:
Load CSS Asynchronously ==> OFF
Inline CSS Async Lib ==> OFFDo multiple tests every 1 or 2 minutes to check the cumulative layout shift value, and other values change also.
In your case maybe you will have to disable only one option, better way is to test test and test with different options ON and OFF ==> clear cache and test again multiple times.Good luck
Forum: Plugins
In reply to: [AMP] AMP, URl structure and AdsenseThanks for your help James, but i give up,
One week without a single ad displayed on my website, does not worth it, something not working, i have no idea where it coming from.I also contacted adsense support, the person told me that i’m not using AMP on my website because my urls are not ending with /amp/, and when i check via the google amp page test, it tells me that your page is AMP.
I checked the amp adsense codes many times, they are add by site kit plugin.
AMP is much better than any optimization plugin i’ve tested, in term of speed it’s unbeatable.
I will give another try in a month or two.
- This reply was modified 4 years, 4 months ago by chillmen.
Forum: Plugins
In reply to: [AMP] AMP, URl structure and AdsenseHi,
Believe me i used everything i could, even the site kit by google, that i’m still using by the way.
Using the site kit plugin, without site kit plugin, adding the code manually, changing wp theme, enable/disable things many times, … ,nothing worked. The only thing that worked is by adding /?amp to my url.
my pages are valid amp pages via the google test page, but no ads want to display only after adding /?amp- This reply was modified 4 years, 4 months ago by chillmen.
Thank you, for your help, done
have a nice dayForum: Plugins
In reply to: [AMP] Activate manually for posts and pagesit’s my third attempt to use this plugin, but still can’t understand how all the features works.
I’ll keep trying and reading documentation till i’ll find my wayThank you a lot for your explanations
Forum: Fixing WordPress
In reply to: Home page and page_id=0i’ve add a redirect when “page_id=0” is directly after domain name that solved the problem, of breadcrumbs.
Thank you a lot bcworkz for your precious time
Forum: Fixing WordPress
In reply to: Home page and page_id=0In my case i discovered the existence of it from GWT, reporting a breadcrumb error, i started searching the web about “page_id=0” and found nothing.
By the way i created a new blog, add some posts to multiple categories, and as soon as i’ve add the “page_id=0”, i could get the list of all posts. (did not use any plugin, fresh wp install)here is some examples: (they use static page as a homepage) when you add /?page_id=0 to the URl you have a list of all posts on this blog with pagination.
mhthemes____com/
wptheme____fr
colorlib____com
wpmarmite____com
Forum: Fixing WordPress
In reply to: Home page and page_id=0Hi,
There is a huge number of blogs that have the same problem, do a test choose random blogs that have a page as front page, and you will see.
And yes i have /%postname%/ as permalink
I could redirect to homepage if “/page/” and if “?page_id=0” in url
But still don’t know why it’s happening and why its happening to many other blogs ?
Thanks
Forum: Fixing WordPress
In reply to: Permalink with post_id question ?Thank you @bcworkz for your time and help
I will do some testsForum: Fixing WordPress
In reply to: Permalink with post_id question ?hi bcworkz,
Thanks for your replyYou are right about canonical links
About the importance of using ID in permalink, i think it is important in my case, because i have thousands of posts, some with near to similar titles and post id makes the url unique. Maybe i’m wrong !
First i was trying to use a combination of category id and post id like this:
%category_id%-%post_id%
but wp does not have category ID as an option, i have to add this via a function, i’m not yet ready to make this move.There is also this CSS solution more simple:
.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) { max-width: 120rem; width: calc(100% - 4rem); }
here is the codex link to understand how it works with examples: body class
I was looking for the same thing but for custom category template, in your case the code could be:
(add this code to functions.php of a child theme) #i’m not expert just playing with code found in the codex#That code will add the class “template-full-width” to all pages
add_filter( 'body_class', 'custom_class' ); function custom_class( $classes ) { if ( is_page () ) { $classes[] = 'template-full-width'; } return $classes; }
I need to disable the cookie banner only on one page, this page display animated ecards ( ecards receivers are landing on this page ) , and it’s hiding the animation on mobile, so no WOW effect for users.
That’s good news that it does not affect website performance.
Thanks a lot for your help have a nice dayHi,
here is a link to check it:
https://maxitexte.com/dfdsf-sdfsdf-sf-sdfsdfsd-9/
Thanks
- This reply was modified 4 years, 7 months ago by chillmen.
Forum: Plugins
In reply to: [Bogo] Tagline translation and twenty twenty theme not working !Thank you very much, your solution works