ashram
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Having a hard time editing HTMLTry turning off the “WordPress should correct invalidly nested XHTML automatically” box in Options/Writing. Could also try turning off “Use the visual editor when writing” option in “Your profile” under Users.
Edit: Or you could try what’s written above LOL
Forum: Fixing WordPress
In reply to: Imbedded ImagesThis is dependent on your theme and the style sheets it uses for formatting. Check your theme directory for the appropriate .css file and make the appropriate changes (after a backup of course).
Most likely the line you are looking for will begin with “img” or “a” depending on how your sheet is setup.
Forum: Installing WordPress
In reply to: Manage Categories leads to blank page.A topic number or link to the other posts might be helpful?
Categories page is blank? Or the posts associated with those categories are blank?
Which files did you upload?
Sorry, just trying to get a clear picture of your problem.
Forum: Fixing WordPress
In reply to: Upload File section missing in “Write Page” – sometimesI have found a solution to this problem in the forum already. See this thread http://wordpress.com/forums/topic.php?id=6518
Basically, disable or create a rule for adblocking software.
Ashram
Forum: Fixing WordPress
In reply to: No Image Upload in 2.1I have found a solution to this problem in the forum already. See this thread http://wordpress.com/forums/topic.php?id=6518
Basically, disable or create a rule for adblocking software.
Ashram
Forum: Everything else WordPress
In reply to: HelpThis is a question for your hosting company, however after looking at your site it appears either the entries in your wp-config.php file are incorrect, or more likely your SQL databases are disabled or have been deleted.
Forum: Plugins
In reply to: How to use Head META Description?Kai2810,
I don’t use this plugin myself, however from what I can gather you can’t configure the plugin to add the meta data you want. It generates the meta data by itself from whatever is in your post.
If you want to add specific metadata to your site I would suggest adding it manually in your header.php file right under the already existing meta data.
As for uninstalling it, it will depend on what changes you have made manually in your other files. If you ensure you remove all the changes you have made your site should revert back to its original state (Keeping a backup before making changes makes this easier).
Ashram
Forum: Themes and Templates
In reply to: Link only on home pageYou need some understanding of PHP code to incorporate this into your page. ie. learn the PHP programming language if you want to know how this all works.
However…
You need to edit your index.php file (or one of the other theme files depending where you want this link to be displayed) to include the following code:
if (is_home())
{
echo '<insert you link here>';
}
Forum: Plugins
In reply to: How to use Head META Description?The plugins webpage (http://guff.szub.net/2005/09/01/head-meta-description/) describes how to install and activate it quite clearly, although you will need some knowledge of how webpages are constructed. If you don’t I suggest learning the anatomy of a webpage first.
As for how you add metatags – you don’t. The plugin automatically generates metadata based on the content of your posts. The website states “The plugin outputs a brief summary of a post’s or Page’s excerpt…”
I suggest studying the files mentioned on the authors website and working out how they work before trying to use this plugin.
Hope this has helped??
Forum: Fixing WordPress
In reply to: Upload File section missing in “Write Page” – sometimesI forgot to mention I disabled Firefox’s cache and cleared it, and the problem still occurs.
Forum: Fixing WordPress
In reply to: No Image Upload in 2.1Sounds like a similar problem to mine here. The upload box appears occasionally leading me to suspect a caching issue in the browser, however clearing and turning off caching did not resolve the problem.