chillmen
Forum Replies Created
-
Thanks a lot
Forum: Plugins
In reply to: [Advanced Query Loop] Maybe a conflict with Twenty Twenty-Four themeWhat settings, and how to do that, i mean i’m testing locally !?
Forum: Plugins
In reply to: [Advanced Query Loop] Maybe a conflict with Twenty Twenty-Four themeI’ve disabled all plugins. I’ve only activated a plugin containing my custom post types and my taxonomies, in addition to the AQL plugin.
The problem occurs when I select a Query Loop block and click on “Transform to Advanced Query Loop.” I save the template.
Immediately after, if I check the page, it is marked as non-indexable.Forum: Plugins
In reply to: [Advanced Query Loop] Maybe a conflict with Twenty Twenty-Four themeHi,
Sorry i already removed the plugin, but like i said i was left only with AQL plugin and Twenty Twenty-Four theme. I disabled all other plugins.
Wait i still have a local copy i wil test ASAP and let you know.- This reply was modified 8 months ago by chillmen.
Forum: Themes and Templates
In reply to: [Twenty Twenty-Four] Archives grid Post template on mobileHi, It worked for me like this : ( I’m not an expert do tests )
Check also this links :
https://www.w3schools.com/howto/howto_css_media_query_breakpoints.asp
And this : https://stackoverflow.com/questions/6370690/media-queries-how-to-target-desktop-tablet-and-mobile@media only screen and (max-width: 450px) {
.wp-block-post-template-is-layout-grid {
grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
}
@media only screen and (min-width: 460px) {
.wp-block-post-template-is-layout-grid {
grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
}Forum: Developing with WordPress
In reply to: Add P tag to Post title blockHi Alexander,
Thank you for your help, but this solution won’t reflect in the source code.
Right now i’m using the H2 tag in archives posts, what i need is to use p tag instead. I don’t want to use any of the H tags.
i’m using the new 2024 default theme.Forum: Themes and Templates
In reply to: [Twenty Twenty-Four] Archives grid Post template on mobileI found it, it’s in wp core, not the theme.
i used this css to keep two columns for page archives even on mobile@media (max-width: 600px) {
.wp-block-post-template-is-layout-grid {
grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
}- This reply was modified 11 months, 2 weeks ago by chillmen. Reason: add code
Forum: Themes and Templates
In reply to: [Twenty Twenty-Four] Can’t hide a row using CSS…“Additional CSS” is hidden. Check at the right top panel,
here is steps to follow :
https://snipboard.io/XJ3taQ.jpgForum: Themes and Templates
In reply to: [Twenty Twenty-Four] Can’t hide a row using CSS…Have you tried adding the css code via the “Additional CSS” Panel ?
I searched for it but i missed it
thanks a lot
Great security plugin by the wayForum: Themes and Templates
In reply to: [Twenty Twenty-Three] No Images sizes in source codeYour solution works, i had to purge the cache ( using cloudflare )
thanks again for your help MatenkoskyForum: Themes and Templates
In reply to: [Twenty Twenty-Three] No Images sizes in source codeHmmm it does not work for me, i noticed that all posts and pages images dont have width and height even some new posts, but archives page posts, have image dimension, i will duplicate website on local and do some test.
Thank you for your help MatenkoskyOk, i will backup the database and do some test,
thanks for your helpThanks a lot for your help, i checked the plugin you mentioned it’s have not been updated for 2 years. I’ll check another plugin as this is the most important next step for me.
i’ve already seen this page Displaying GDPR messages on AMP pages, but i think it’s only for Google Ad manager not for Adsense ?
I’ll check for a GDPR plugin that support AMP.
Thanks again and have a nice dayForum: Themes and Templates
In reply to: [Twenty Twenty-Three] Problems and questions about sticky menusFor problem 3, i solved it with CSS:
.wp-block-navigation-submenu { z-index: 999; }