highgatecreative
Forum Replies Created
-
Forum: Plugins
In reply to: [Gutenberg] Is basic wordpress/gutenberg incompatible with Adobe Fonts?Until 6.5 I added this line at the top of style.css:
@import url("https://use.typekit.net/projectid.css");
But with 6.5 that doesn’t work for all FSE sites (strangely, some work), so I have enqueued it as an editor asset:
function enqueue_editor_assets() { wp_enqueue_style('editor-styles', ' https://use.typekit.net/projectid.css' ); } add_action( 'enqueue_block_editor_assets', 'enqueue_editor_assets' );
- This reply was modified 7 months, 3 weeks ago by highgatecreative.
Forum: Fixing WordPress
In reply to: Page layout container width has narrowed since upgrading to WP 6.2I was able to finally copy the css proposed by @farhansrambiyan but it just blows everything apart. My client side is fine, but the editor does not recognize the wideSize in my theme.json and makes everything the contentSzie:
"layout": {
"contentSize": "680px",
"wideSize": "1100px"Where do you find index-classic.php? And does it fix the issue without the CSS proposed by @farhansrambiyan?
Forum: Fixing WordPress
In reply to: Page layout container width has narrowed since upgrading to WP 6.2My editor is also using only ContentWidth size after upgrading. I tried to follow your instructions but I don’t have “Customize” under “Appearance.” I just have Themes and Editor. Adding that code to styles.css did nothing, but I don’t think that file affects the editor (unfortunately).
Forum: Fixing WordPress
In reply to: A missing spec in slippry.min.css squishes imagesThanks, I’ll move it.
Forum: Plugins
In reply to: [Gallery Custom Links] Coding error generates huge Apache error logsJordy,
I concur. Your plugin is fine and works as advertised. And I just checked: you are correct—responsive-lightbox also uses simple_html_dom.php, the culprit AFAIK.
And believe me, I’m not without fault; I’m personally responsible for lots of code smell, and often the same ones you see in these logs. That said, simple_html_dom.php generates a disproportionate amount of errors. I turned off the notices, per your suggestion, but no wild about doing that in case I miss something else.
Thanks for your explanation and your work on this plugin.
Brad
Forum: Plugins
In reply to: [Gallery Custom Links] Coding error generates huge Apache error logsFYI, the update to the plugin today did not fix the problem. 4 clicks and 13000+K, with error notices off, 0.
Brad
Forum: Plugins
In reply to: [Gallery Custom Links] Coding error generates huge Apache error logsThanks for replying, Jordy.
I’ve replaced:
define('WP_DEBUG', false);
with:
ini_set('display_errors','Off'); ini_set('error_reporting', E_ALL ); define('WP_DEBUG', false); define('WP_DEBUG_DISPLAY', false);
Even so, the code smell should be addressed.
Brad
Forum: Plugins
In reply to: [TimeZoneCalculator] input American date formatThanks for pointing that out. Sorry I missed it!
Peace,
Highgate