rudolf45
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: home page disappearedroot = public_html
download a fresh copy of WordPress and upload the “short and sweet” index file from the main directory to your server.
Forum: Fixing WordPress
In reply to: permalink/mod_rewrite problem1. This is not really the place to ask server administration questions. (possible mod_rewrite is not enabled)
2. The .htaccess file’s place is in the WP’s main folder.Forum: Everything else WordPress
In reply to: Formattting wp_list_pages outputNothing. Just use the stylesheet to “format” it as you want.
Forum: Fixing WordPress
In reply to: Putting Blog Title In Browserdiplay: none;
Forum: Installing WordPress
In reply to: limit wp_list_pagesThe bad thing is… pages and Pages are two different things in WP. And the OP was asking about Pages.
(meanwhile the plugin author should make it clear: it is about posts!)Forum: Fixing WordPress
In reply to: Boarders on JPGS in postingsMaybe I am from another school… but I don’t think there is an “img ID” as in
#img
It should simply be
img– and if there isn’t, just add it to your stylesheet with the properties suggested above.Forum: Themes and Templates
In reply to: Associated Conditional TagsHIGHLY RECOMMEND they put this info
Q: They? Who is they?
A: “they” is us – you and I and every WP user. Please, feel free to login to the Codex and add any additonal info you consider useful for your fellow users 🙂Forum: Fixing WordPress
In reply to: RSS broken (charset failure)Can you be more specific on “not working”? That doesn’t mean anything.
FYI: your feeds are working fine – they even validate, just have a few minor errors.
Clicking on the help link it even tells you how to correct them.Forum: Installing WordPress
In reply to: change editing mode from advanced to basicI’d like to help… just have no idea what do you call “advanced” and/or “basic”.
If you mean the wysiwyg thing and the code editing: don’t you have a “Visual” and a “Code” tab above your posting area?
You can turn on/off the “visual” gizmo by going:
admin – Users – Your profileForum: Plugins
In reply to: I want sponsor links on homepage onlyNo, I don’t think my answers are “better”. Maybe I am just a practical guy loving the simple solutions (because I cannot code 😉
It wasn’t my intention to make you feel bad about your replies. Sorry, if it came through like that.
Forum: Fixing WordPress
In reply to: only small excerpt showing in technoratiLooking in the wrong place?
http://www.technorati.com/blogs/http%3A%2F%2Fangrytoxicologist.comForum: Themes and Templates
In reply to: Trying to add WP php…In order to be able to use any WP code (read: template tags, functions etc.) in a file OUTSIDE of your WP install, you have to make that file to “know” about your WP install.
Put this on the top of the file (before everything):<?php require('./path-to-your-blog/wp-blog-header.php'); ?>Forum: Plugins
In reply to: I want sponsor links on homepage onlyWhat about:
is_single
is_category
is_archive
etc… ?
Your code doesn’t address those cases.I still think the easiest way is:
if is_home > show the ad, else > do nothing.Forum: Themes and Templates
In reply to: WordPress Theme Help?I tried using excerpts and that works as long as I put some text in my excerpt field.
That’s not how WP is working out of the box. It might also be related to your theme, which is a PITA to modify… that’s why not too many people jumping in 🙁
Out of the box WP is working in this way:
– if in a template file (index.php, archive.php etc.) the_excerpt template tag is used > WP will take the first X number of words (120?) of the post and display it as an excerpt… unless you put something in the Excerpt field. If there is anything typed in that field, it will be displayed.
– if in the template file you have the_content tag > the whole post will be shownI have to repeat myself: all this is true and applies to any normal theme. Your theme is not using standard WP functions, so I don’t know how it will react to changes described above.
Forum: Plugins
In reply to: I want sponsor links on homepage onlyI don’t know of a plugin, but you could use a conditional tag to display the ads only on the front/main/home page.
(hint: look for “is_home”)