waterjeorme
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to make Gravatar image a link to author’s page?The solution from cais is great however: get_the_author_id() is deprecated as of 2.8.
For WordPress 2.8, please use get_the_author_meta(‘user_email’).
Forum: Plugins
In reply to: [Plugin: Register Plus] Fatal Errors when uploading from LocalhostI uploaded it again on this new server and now it works. Guess something happened with permissions when I first moved it.
Forum: Plugins
In reply to: [Plugin: Register Plus] Fatal Errors when uploading from LocalhostI am having this problem too. Does anyone know what causes this and how to fix?
Forum: Fixing WordPress
In reply to: the_excerpt outputs extra informationI have a problem with it displaying source code that is not in the post content when there is no excerpt present.
Specifically I use the “add this” plugin and the javascript to call that is showing when I use the_excerpt().
If I place content in the post excerpt field then it works as expected.
Forum: Fixing WordPress
In reply to: Paragraph tag disappearsI am having the same problem.
In the HTML tab I’ve coded a blockquote with a cite and a few paragraphs like this:
<blockquote><p>words of quote</p><cite>citation</cite></blockquote> <p>paragraph of text</p> <p>another paragraph of text</p>I come to the page some days later and find the all the <p> tags and their closing tag have been removed – leaving:
<blockquote>words of quote<cite>citation</cite></blockquote> paragraph of text another paragraph of textI haven’t figured out the exact way to reproduce it. But its busting my layout (CSS Selection) and making me angry.
Can someone help us?