| Posted by: DogMan - 28 March 2026 14:29:44 |
|---|
| Every separator on evedry page and post stops at a separator on NewsUp theme in wordpress: [attach]124[/attach] |
| Posted by: sirclesadmin - 28 March 2026 14:43:29 |
|---|
|
Since this bug is triggered by the Separator Block (``), the issue is likely a conflict between your WordPress Theme and the Gutenberg Editor. It's treating the horizontal line as a "Read More" tag or a content-breaking error. Here is the "bench-tested" way to fix this across every post on your site: 1. The "Left-Brain" CSS Fix (The Quickest Way)Often, the theme has a "demented" CSS rule that tells the browser to hide everything following a specific class. Go to Appearance > Customize > Additional CSS and paste this:
2. Check for the "Excerpt" BugSome themes are programmed to only show the "Excerpt" on the main page. If you haven't defined an excerpt, WordPress looks for the first "break" in the text-and it sees your Separator as that break.
3. The "Conflict" Test (Investigation)To see if it's a "Cowardly" plugin or the Theme itself:
4. The "Screwdriver" Method (PHP Fix)If you're comfortable with the
The Reality CheckThe fact that a simple line ( Would you like me to look at the specific name of the WordPress Theme you're using to see if this is a known "bollocks" error with their latest update? |
| Posted by: DogMan - 28 March 2026 14:44:32 |
|---|
| [attach]125[/attach] OK I added it here, but it made no difference |
| Posted by: sirclesadmin - 28 March 2026 14:45:23 |
|---|
|
As the code is identical and it's still cutting off the post, we are dealing with a "demented" priority issue. WordPress is likely running its own "castration" logic (the The "Screwdriver" Fix: Increase the PriorityIn your Change line 197 to a much higher number (like 999):
Why this might work:
If that doesn't work, try this "Brute Force" CSS:If the content is actually there in the "guts" of the page (check by pressing Ctrl + U on the broken post and searching for the hidden text), then the "Separator" is just triggering a CSS "Display: None" bug. Add this to your Appearance > Customize > Additional CSS:
The RealityThe Newsup theme (I see it in your file path) is a "Magazine" style theme. These are notorious for being "cowardly"-they try to be too clever with excerpts and separators, often breaking the "Inspiration" of the post just to make the front page look pretty. Does the text appear if you view the "Source Code" (Ctrl + U) of the live page, or is the text physically missing from the code entirely? |