Bozhana Milcheva
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Not loading Block Editor CSSHi!
You must forces WordPress to loadwp-block-libraryby addingadd_theme_support( 'wp-block-styles' );Forum: Fixing WordPress
In reply to: v6.9 has broken my siteWith this code you will set the font-family, which will apply to all content.
The font size set in this waybody {font-size:1em!important;}applies only to text that is not placed in tags. The font size must be defined for different tags.
- This reply was modified 6 months ago by Bozhana Milcheva.
Forum: Fixing WordPress
In reply to: v6.9 has broken my siteYou can download the theme.json or stylesheet file from any theme directory, add fixed typography (in theme.json), or add a CSS rule inside the stylesheet. Then replace the original file in the directory.
If you update the theme everything will be lost.
The best practice is to make child theme and putt stylesheet or theme.json there.Forum: Fixing WordPress
In reply to: v6.9 has broken my siteRestore your original typography by adding custom CSS to override the new defaults.
Probably your theme’s custom typography are being overridden by new global typography rules.Forum: Fixing WordPress
In reply to: Deleting images from media libraryThe fastest way is with WP-CLI, if is installed and if you have SSH console access.
The other why is to write a temporary script that is executed from a URL like https://yourwebsite.com/?delete_month_images
Of course, you can also just execute an SQL query that deletes the records from the database without physically deleting them from the server.