manski117sevaa
Forum Replies Created
-
Thanks for your quick response. I’ve been looking into the issue more on my end and you are probably right. It’s probably something site-wide that is likely an issue with some bad html on some old posts. Since this would take a while to solve, my goal was to go ahead and just make a patch on our end so that sentry would stop pinging us with warnings.
However, I’ve been having trouble applying our patch. I’ve double checked everything on my end so I don’t think it’s anything simple like the directory or a syntax error in the file. When I try to apply it via composer update, the patch fails. Running –verbose, I can see it gives the error “Hunk #1 FAILED at 177 (different line endings).”At first we thought that it might be related to encoding, since Windows and Mac encode text slightly differently, and line endings are apparently a particular pain point. We looked into it and it looks like you are using LF line endings. Is this correct? If so, our current thought is that perhaps WPackagist is doing something to it? I was curious what you thought or if anyone else had experienced an issue like this.
Forum: Everything else WordPress
In reply to: Applying custom styles to acf tinymce visual editorThanks. I actually finally got it working and it looks good. The key was using the?add_editor_style()?method in the functions.php (or inc/custom.php on my project), and creating another separate stylesheet in the theme directory.?Specifically, the user contributed notes at the bottom of the page were what worked for me.