Harry
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Contact Page not able to sent to emailHi,
I’m not sure what plugin you’re using, but the code related to sending the mail is added via an include. If you’ve had this site designed for you by someone else, I would recommend the Contact Form 7, it’s a highly configurable, and easy to use plugin. It generates the form, and gives you get code to page into the WordPress page, so you don’t have to mess around with code in the php files.
Generally, if it’s just emailing you, the information will probably not be stored in a database first, it’s used POSTed to another script that will send out the mail.
Good luck.
Forum: Fixing WordPress
In reply to: Server suspended by hostgatorSorry, I don’t think there is anything I can suggest, other than to contact hostgator. If your blog is causing a lot of strain on their server. I would suggest installing WP Super Cache to relieve some of the pressure.
Forum: Fixing WordPress
In reply to: Deleted Categories, Now website doesn't workI’ll keep this in mind if I ever attempt clearing out old categories. Thanks for the explanation of your solution.
Forum: Fixing WordPress
In reply to: How to fix Validator ErrorNo problem, good luck with those. Most seem to be straightforward. Mark as resolved if you’re happy your validation error is fixed.
Forum: Fixing WordPress
In reply to: Deleted Categories, Now website doesn't workThe site looks fine to me. Images are loading, at least on the homepage anyways. Hope you got your problems fixed.
Forum: Fixing WordPress
In reply to: How to fix Validator ErrorI have refreshed and do not see the new copyright logo. Do you save your files with the UTF8 Charset?
Forum: Fixing WordPress
In reply to: How to fix Validator ErrorThere is an invalid non-utf8 character in your footer.
&xA9;is the Copyright symbol.use
©instead for the HTML equivalent.Forum: Fixing WordPress
In reply to: Password-protect a portion of the post?As the previous two responses indicated, it’s really only protecting certain posts. Not parts of posts.
Have you searched for a plugin?
Forum: Fixing WordPress
In reply to: Fixed header?Short answer, yes, almost anything is possible.
Long answer, how familiar are you with web development, php, and js/ajax as it would require a good knowledge and a bit of development to implement a custom solution to this. I’m not aware of any plugins, but I would have allowed you search for such.
The best and easiest way to do it would be to have a small popup media player, a number of radio stations provide their online streaming services this way as a not to confuse the user, and so that they don’t accidentally navigate away from the browser window.
Forum: Fixing WordPress
In reply to: How to remove "home" pageIn Settings > Reading, is Static Page selected, or Your latest posts.
Forum: Fixing WordPress
In reply to: How to remove "home" pageBy home page, would this just be the list of posts on the front page of your theme?
You could start here with a guide to how themes work.
Forum: Fixing WordPress
In reply to: Can't show full content in the RSS feedI suppose the point I tried to make before is, that the following two links are different. Therefore the WordPress setting you’re expecting to have take effect isn’t in fact actually working on your other site.
1. http://www.medicalmarcom.com/feed/rss/
2. http://www.medicalmarcom.com/feed/Even on Medical Marcom the RSS (#1) only shows snippets, which is correct. #2 however shows what you’d like to achieve.
I can’t get a look at your raw XML as it keeps redirecting me to Feedburner to see if there are any discrepancies. If you could switch off the Feedburner redirect to see if I can see the difference? As Feedburner may actually just be truncating the output for it’s display. The XML might actually be the way you want it.
Let me know if you can disable it temporarily. Because it may just be taking the RSS feed, and not your WordPress Raw Feed, which is what you’d ideally want.
They are just different character sets used and can cause problems sometimes between say Windows and Unix/Linux based operating systems. Characters maybe misinterpreted causing the errors you saw.
Great work on finding the solution. It would have been far down the list of my items to check.
Oh, and it mightn’t be that you’ve touched the file, I believe you, generally a plugin that has been enabled may have caused a conflict.
I don’t think the whitespace is the issue.
Anytime I get that error it’s because I’ve tried to use the php header() function. It tries to set the header, but because the header has already been set, it causes an error.
So, could you copy that specific line here, just so I know what it’s doing.