I am using the Frontier Post plugin, which does not seem to have active support.
I am running into the problem that when I edit and save a post through the front end, which is one of the features of this plugin, the post somehow loses its formatting. e.g. if I had three paragraphs of text, it becomes one large paragraph, even though when I "inspect" it on chrome, one can clearly see the line breaks.
Why would the text be displaying with no paragraph breaks, even though the inspect code contains them? Perhaps I could fix this with CSS?
Sorry not enough reputation to comment, however I was wondering if you had enough line breaks?
Just having one <br /> would only push the text to the next line, it wouldn't create a separate "paragraph."
Either put in two <br /> tags or split the paragraphs into <p> tags and add css from there (Which is probably the better option)
It turns out this problem is only occurring when I create a post in the back end, and try to edit it in the front end. A post created through the front end does not have this issue.
The problem is due to the fact that Frontier Post has not been updated in a while, and is therefore not compatible with Wordpress Gutenberg. Wordpress Gutenberg (used when creating a post through the back end) uses <!-- wp:paragraph --> to delineate new lines.
Therefore, when a post is edited in the front end, by Frontier Post, it does not recognize <!-- wp:paragraph --> as a new line, .
Since it won't affect the users of my site, I just decided to leave things as they are and make sure that my posts are properly formatted.
Related
We use Zoho creator which allows us to generate iframe "code" to embed in html.
When we do that, additional blank lines are added to the end of the displaed results.
You can see what I mean on this page I created to illustrate the issue:
https://themezz.com/zoho/index.html - it has 5 lines of text with the iframe tucked it; yet many blank lines are added. View page source please.
Also tried many variations of the height and width tags with negative results.
https://themezz.com/zoho/index2.html
The ultimate goal is to embed that chart into a Wordpress theme, which I have done, but of course all the additional blank lines appear which look like crap. I embedded it in the Wordpress php, as well as tried as a widget, and also ran it through feedburner as RSS THEN into Wordpress with all poor results.
I think it's a Zoho issue, but their tech support has not replied nor has anyone in the Zoho support community.
Perhaps someone can think of a solution, or a workaround for eliminating these blank lines.
Appreciate your time.
Do you want it to look like this
i have tried it in zoho creator pages ,only change being done is in height attribute
code:
<html>
<p>every</p> <p>good</p> <p>boy</p> <p><iframe src="https://creator.zohopublic.com/kyl184/resource-dispatch/view-embed/Embed_page/yRSBBntzf7Au4MrZ6k6rnB1mjD46uYmSpeW1bUdwpVzCFmJKdwn6Ssr7YOs3Aa1A5D261uUXx22aOXAPOdHgxPeJ6BE2rbg3eeSR?" width="800px" height="300px" frameborder="0" scrolling="no"></iframe> </p> <p>does</p> <p>fine</p>
here is a demo page view from wordpress containing your iframe data
I have a WordPress plugin (wp youtube lyte) that hooks into the "the_content" filter, adds some HTML and returns the content.
The resulting rendered HTML is slightly different from what I added, with linebreaks being added after opening or closing divs and -more importantly- unbalanced tags being added, even when no other plugin is active.
I've tried removing the "wpautop" filter, but that seems not to change anything.
I can't find any documentation on what might be happening, hope someone can point me in the right direction?
In the end the problem was with wpautop after all, which does some pretty nasty stuff to the HTML when meta- or noscript-tags are involved.
I have a site: http://weltreise.inomex.ch/
I have three columsn Monsonry. I'm trying to make the complete each box clickable to complete post. Currently, only read more takes me to complete article. Any idea how to do it?
Thanks
How are you running the loop that delivers content to the blocks (plugin, custom template, etc.)
You need to make sure the link tags are being placed around the entire block, not just the "read more" link.
Author won't change theme just for you. It is also bad practice to change php file code by yourself, because of all updates and stuff. I would suggest that you add custom javascript(jQuery) (it is dirty solution, but it should work). Also be careful. Even if you wrap masonry brick with anchor(a), you should remove links that are inside that brick -> you should change anchor(a) with something else (span).
I have a Wordpress site that uses a JQuery plugin called Hover-Caption ( https://github.com/coryschires/hover-caption ).
The main page of site: (http://brighidfitzsimons.com) looks good.
However in Internet Explorer 9, a similar page based on Category adds a 282px top offset to the post thumbnail image. (http://brighidfitzsimons.com/category/lifestyle/)
I am new web developer so I am struggling to figure out how to isolate problem. Based on this stackoverflow entry ( How do I get rid of an element's offset using CSS? ) my current train of thought is to add a IE specific CSS sheet to 'reverse' the offset but I can't seem to get at the offending element. Also I'm confused why works on main page but not on category page. If you watch page loading carefully, it initially loads correctly then at the very end the images are moved down. Perhaps this is a clue.
First stackoverflow entry so I hope I have followed correct ettiquete. Please advise if you need me to provide any more information.
Thanks for taking time to read problem.
Regards Simon
It has something to do with the substitutions of the content inside the title, probably some quirk about ie9 which someone else would have more of an idea for me
just so you can take my word for it: http://jsfiddle.net/BXjK3/
the first two i have removed all the greater, lesser and quotes and it works, but I would say the browser does the substitutions before Javascript can see it, and it all goes down-hill
edit: worth mentioning the reason it looks like that is because the text is no longer properly contained, and so the display none is not taking effect on it, pushing all the images down and making it a jumble, due to the way the content is loaded the ie inspection cannot show me how the text is after the javascript, only what was loaded on page load, so i can't give you more help than that
http://www.damianc.pl/wp-content/themes/damianc/cphp.png
I've blog based on WordPress, I use plug-in SyntaxHighlighter Evolved. In my posts first codes has empty space in Chrome, but in IE hasn't [image]. How fix it?
I don't think the issue is fixable.
I have run into FireFox/Chrome/IE formatting issues working as a Software Developer, and the issue was in the underlining HTML structure. Each browser would interpret the HTML code differently.
You might be able to fix the issue if you can change the HTML that is sent to your posts. If not, I would recommend getting a different code formater. WordPress has a built in format for code triggered by,
<code> your code here </code>
or
<tt> your code here </tt>
See link for more detail: Writing Code in Your Posts