Kathryn P.
Forum Replies Created
-
Forum: Plugins
In reply to: [Gutenberg] Gutenberg appender flies outside the editor 15.3.1Add Block Button between two blocks shift to wrong side when using Gutenberg with RTL language.
https://core.trac.wordpress.org/ticket/52809Ah, thanks for this additional information. I’m going to reopen the related Gutenberg GitHub issue in this case.
- This reply was modified 3 days, 14 hours ago by Kathryn P.. Reason: added link to GitHub issue
Forum: Plugins
In reply to: [Gutenberg] Gutenberg appender flies outside the editor 15.3.1Hi @haipo – thanks for this report.
Could you please provide the following information to help better understand how to replicate the issue:
- What version of WordPress are you using?
- What’s the size of your browser window when you’re experiencing the problem? (You can use this tool and check the values at the top right.)
- Is the issue present with all your plugins temporarily deactivated, except Gutenberg? You can use the Health Check plugin‘s troubleshooting mode for this test, which will not change your live site. If the problem goes away, reactivate your plugins one by one (while still in troubleshooting mode) to find the culprit.
- Is the issue present with a default theme like Twenty Twenty-One? Again, you can use the Health Check plugin for this so your live site isn’t affected.
- Could you please provide a screenshot showing the issue โ or better yet, a screencast. (Feel free to use Loom or your preferred tool.)
Forum: Themes and Templates
In reply to: [Twenty Seventeen] functions.phpYou’re very welcome, and I wish you lots of luck in this not-very-fun process! Cheers.
Forum: Plugins
In reply to: [Gutenberg] query loop block with offset pattern@enve Glad it’s looking more like what you had in mind now.
If you’d like to remove the spacer blocks on mobile, when the posts go down to one column and the offset/staggered effect is not present, you can try this custom CSS:
/* Archive pages - hide spacers in Post Template block on smaller screens */ @media screen and ( max-width: 783px ) { .archive .wp-block-post-template .wp-block-spacer { display: none; } }
While the Customizer is not exposed by default when using Site Editing, you can still access it manually by adding
/wp-admin/customize.php
after your URL. You can then add custom CSS in the Additional CSS area.Forum: Plugins
In reply to: [Gutenberg] query loop block with offset patternHi @enve – I see you’re using Twenty Twenty-Three. I added the Offset pattern from the Pattern library to a page in this theme, and this is what it looks like in the editor:
And this is what it looks like on the front end:
Is this the display you’re looking for?
If so, could you try repeating this process on a test page at Pages > Add New and provide a link to the new page here?
Forum: Plugins
In reply to: [Classic Editor] SUG is not defined when links are clickedHi @jkkenzie – thanks for the report.
I wasn’t able to replicate any of these issues with the following testing conditions:
PHP 8.0.22
WordPress 6.1.1
Classic Editor active
No other plugins active
Twenty Twenty-Three themeCould you please provide the following information to help better understand how to replicate the issue:
- What version of WordPress are you using?
- What version of PHP is your server running?
- Is the issue present with all plugins temporarily deactivated, except Classic Editor? You can use the Health Check plugin‘s troubleshooting mode for this, which will not change your live site. If the problem goes away, reactivate your plugins one by one (while still in troubleshooting mode) to find the culprit.
- Is the issue present with a default theme like Twenty Twenty-Three? Again, you can use the Health Check plugin for this.
Further to this โ I’m not seeing any “Insert Shortcode” option on the standard Classic Editor toolbar, which makes me suspect an additional plugin might be adding this. Here are the default buttons:
Let me know how it goes.
Forum: Plugins
In reply to: [Create Block Theme] Fatal error on export/clone/create child themeHi @elenaocone –
Unfortunately I donโt have access to a non-multisite install
You can create a free test site here: https://instawp.com/
Let us know how it goes. It’s important to rule out the multisite install as a factor. Thanks. ๐
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] Navigation menu not workingHi @kuntelercenpo – thanks for the links.
I see that one of the navigation menus has a blue background colour set on the Navigation block, while the other has no background colour defined.
Menu with blue background:
Menu with white (transparent) background:
You’ll want to go into the Site Editor at Appearance > Editor, and go to the template or template part where you created this Navigation block.
Once you’re in the right template/template part, select the Navigation block and set the same blue background colour on it.
Let me know how it goes!
Forum: Themes and Templates
In reply to: [Twenty Twenty-Two] How to show full posts?Hi @serialinternet – to display the full post on your blog, you can replace the Post Excerpt block with the Post Content block in the relevant template(s).
Without seeing your site directly this is just a guess, but your blog is likely using the Home template. To edit the Home template, go to:
Appearance > Editor โ this normally brings you to the Home template by default.
From there:
- Remove the Post Excerpt block
- In its place, add the Post Content block
I made a screencast to show you the process:
https://d.pr/v/LssAg7/JyOvA1Q9YJ
If you have any questions about any step in the process, just let me know and I’m happy to help further.
If you’re new to the Site Editor, here’s a collection of resources that can help get you up to speed.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] functions.phpWow, that does sound cumbersome.
The only thing I can think of is perhaps you could try asking in the Kirki Customizer Framework support forum โ if this is indeed what you’re using โ for some insight into what the framework does, and some ways to figure out how to detect what functionality is in use on your site.
Alternatively, you could making a copy of your site on a development server, then try deactivating the plugin and then exploring the site to see if anything is negatively affected. Unfortunately, I don’t know of an automated way to do this.
Hi @rebeccayoung –
I have just tried this again and youโre right, itโs now working as expected โ strange! Thanks again for all your help.
I’m very glad to hear!
Feel free to start a new thread if you need help with something else. Cheers!
Forum: Plugins
In reply to: [Create Block Theme] Need to add html data-theme=”dark”You’re very welcome, glad to hear!
Forum: Reviews
In reply to: [Twenty Twenty-Three] Best theme for meHi @1greatness – thanks for the feedback about the block and site editor!
Having blocks look good in any context (device/containing element) is definitely something that folks in the WordPress community are currently thinking about the best way to handle. If you’re interested in reading up on where this is heading in the WordPress project, you might like to have a read of Intrinsic design, theming, and rethinking how to design with WordPress โ as well as this GitHub issue. The “intrinsic” design approach is a bit different than relying solely on device size to determine how a block should appear; it’s a more flexible approach that also takes into account container size, such as column width, and makes adjustments as needed.
Twenty Twenty-Three also includes fluid typography, which means that its font sizes should automatically adjust to different screen sizes. Learn more here. If you’re finding those preset size ranges are not to your liking, feel free to open a support thread and folks will be happy to take a look!
Forum: Plugins
In reply to: [Create Block Theme] Need to add html data-theme=”dark”Hey there @rinh –
@welcher provided this function that you can add to your child theme’s
functions.php
file. Create Block theme doesn’t provide this file by default, but you can create one in a code editor and add it to your child theme folder.add_filter( 'language_attributes', function( $output ) { return $output . ' data-theme="dark"'; }, );
Just keep in mind that it’s a little hacky. But I just tested it, and it worked for me, outputting this on the front end:
<html lang="en-US" data-theme="dark">
Let me know how it goes!
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] Navigation menu not workingHi @kuntelercenpo – could you please provide a link to a post that shows the navigation menu issue you describe, as well as a link to an example of a post where the content width isn’t what you expect? I’ll be glad to have a look. Thanks!