Roar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Latest posts on Home Page from selected categoriesHello! That is my site! Thank you for liking something about it.
:p
Here is the code I use.
<h2>Recent posts from all sections</h2> <ul id="recentposts"> <li id="recent-posts"> <ul> <?php get_archives('postbypost', 10); ?> </ul> </li> </ul> </div>
I think you are supposed to sign up for their support forums if you want the themes to be supported. It’s on their site.
Forum: Fixing WordPress
In reply to: Upgraded to WP 2.6 and can’t access wp-admin areaWell, I think I will wait to upgrade for now since I just did a MAJOR redesign and I am afraid *makes chicken noises*, but I just wanted to give kudos to Otto42 for all the help he gives.
Forum: Fixing WordPress
In reply to: Remove “Blogroll” and “meta”I was wrong…
in my template, it looks like this, in the body section of header.php
<div id="header"> <div id="headerleft"> <a href="<?php echo get_settings('home'); ?>/"><img src="<?php bloginfo('template_url'); ?>/images/logo.gif" alt="<?php bloginfo('name'); ?>" /></a> </div>
If I wanted to remove the club1985, I would cut out everything between the
<a>
and the</a>
. that will remove the link.So you will need to look for
<?php bloginfo('name'); ?>
somewhere between the A tags.Hope that helps.
Forum: Fixing WordPress
In reply to: Remove “Blogroll” and “meta”the club1985 link will be found in the header file… look for something like this…
(your template may vary)
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
To remove Blogroll, go to Manage Link Categories.
Forum: Fixing WordPress
In reply to: Add a new category to all postsHi, this is also my question. I have 1500 posts. Due to a new design, I need to add them all to a new category, i.e., “Purple” in addition to their existing category.
Is there any easier way to do this than clicking through 93 pages of posts and doing it page by page?
Forum: Fixing WordPress
In reply to: I’m logged in, but no “edit” links show when I look at blogDang it. I had to enter the www. on the links in the settings.
Not sure what that is about.
Hope this helps someone else someday.
Tschüss!
Forum: Installing WordPress
In reply to: WordPress not running on right pageI see it now?
Forum: Fixing WordPress
In reply to: 406 Not Acceptable Error on Post EditsThank you so much. I will write them immediately.
Forum: Fixing WordPress
In reply to: umlauts are gone?Found it, in case anyone else does this.
Something added to wp-config.php DB CHARSET changed, but if you do not know that, they don’t really tell you in the upgrade instructions and it breaks your umlauts and all other foreign characters.
So, I recommend you do a complete new install and restore your blog.
That’s that.
Byeeeeeeeeeeeeee
Forum: Fixing WordPress
In reply to: First page blog = one category, another page = all other postsThank you Moshu. I will step back and think outside the box a little bit more and see what my little gray mass in my head can come up with.
Forum: Plugins
In reply to: Blogroll Category OrderBLESS YOU. This is just what I neeeded
Forum: Fixing WordPress
In reply to: Recent Topics from 1 CategoryWhat plugin was it please?
Forum: Fixing WordPress
In reply to: How do I target my Text Widgets with my CSS Stlye SheetHi there, if anyone cares, I was able to change my widgets code by changing the sidebar code on my theme. The widgets themselves did not have individual css.
I am subscribing to this as I would love to do the same thing.