Changing “blockquote” in the theme’s style.css fixes this.
From:
blockquote
{
margin: 0 1.5em;
}
To:
blockquote
{
margin: 0 1.5em 1.5em;
}
Why there’s a difference now with 6.5, I’m not sure.
]]>The blockquote function doesn’t appear to be working, for me at least, in Classic Editor. The selected section of text previews as indented within the editor, but not the preview page, and when published remains the full width of the page and indistinguishable from the rest of the text. Am I missing something obvious?
]]>After updating to the newer version, Yoast SEO is no longer counting characters correctly as well as not recognizing outbound and internal links.
For example, the article I’m working on has a word count of 423, 2 outbound and one internal links. However, SEO is stating:
“Outbound links: No outbound links appear in this page. Add some!
Internal links: No internal links appear in this page, make sure to add some!
Text length: The text contains 63 words. This is far below the recommended minimum of 300 words. Add more content.”
WP Current version is 6.0.1 and Yoast SEO Version 19.3
Thank you for your support!
]]>It’s been awhile since I noticed this issue and keep saying I will investigate it further and never had the time until now.
I am still using WordPress 5.9.3
I have noticed that the post embed do not work anymore. I do not know if this is a customisation issue on my side or not, but I don’t think so.
About 6 months or a year ago (?), when I was pasting a link from my website into the editor it was creating an embed post in my articles.
Now, I still get a wp-embedded-content
<blockquote class="wp-embedded-content" data-secret="XWiUgYb41b">
But it doesnt show the preview of the post.
Here are some exemples :
Link 1 : https://club-stephenking.fr/conseils-stephenking-2021#films-recommandes-stephenking
Where are : class=”wp-embedded-content” data-secret=
Link 2 : `https://club-stephenking.fr/locke-key-par-joe-hill-gabriel-rodriguez#autres
Where are : class=”wp-embedded-content” data-secret=`
Any idea whether its a custom issue with my website?
I looked into the css of those blockquote, but I don’t see anything
Thanks !
]]><blockquote>...</blockquote>
tags.
I’m experiencing an issue which I’ve reduced to this as the simplest Post content case:
<blockquote>This is inside the blockquote</blockquote>
And this should be outside!
The expected html output using a template that only outputs clean the_content()
would be something like:
<div id="post-3061">
<h2>Test Blockquote</h2>
<div><p><blockquote>This is inside the blockquote</blockquote><p>
And this should be outside!
</p></p>
</div></div>
i.e. displaying only the first text section wrapped in blockquote tags. But the actual output is:
<div id="post-3061">
<h2>Test Blockquote</h2>
<div><blockquote>This is inside the blockquote<p>
And this should be outside!
</p></blockquote>
</div>
</div>
i.e. the complete content gets output before the closing blockquote is output.
It appears this can be fixed by adding this filter:
function gwc_fix_blockquote( $content ){
$needle = '<blockquote>';
if ( substr($content, 0, strlen($needle)) === $needle ){
return '<p></p>' . $content;
}
return $content;
}
add_filter( 'the_content', 'gwc_fix_blockquote' );
-prepending an empty <p> tag to the actual post content.
Note that wpautop is disabled in this install.
I have a suspicion this is related to code in wp-includes/formatting.php, but I have not dug too deeply, since I have a workaround.
Am I missing something? Or is this intended behavior?
Thanks
]]>I need to customize it using Custom CSS since we have hundreds throughout the website and I want to keep them all consistent.
I’ve tried targeting a few different classes, the blockquote element itself, and used !important but I can’t seem to get it to change.
Does anybody know the proper CSS needed to target the grey pullquote elements throughout the page linked?
Thank you very much!
]]>Well, first of all: That’s one of the greatest plugins I found … incredible stuff!! THANK YOU!!
The plugin works well, I use it for my site in german. Although I think it doesn’t work within blockquote-tags. May be I’m wrong, but I tried and resized the browser-window — all text is rendered, just this in blockquotes seamed to be not.
I tested it just on my smartphone, too. Same. So I guess I have to set an option or something like that? I’ve been gone through them but didn’t find something that looks like belonging to blockquotes.
But what a look of my posts now — whow!!
I’m really … beeindruckt.
]]>Texts are not shown in tweet page (the page you go after clicking the Tweet button) when
1. The sentences include letters such as ” and ‘
2. The sentences are copy and pasted
I hope this topic would help making the addon better.
]]>