scooby
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: my blog admin page redirect to wordpress.comSounds like you just need to change your redirect address.. I bet that after you logged into where every your supposed to be, and you were redirected to another, you are still logged in, which means you should be able to manually put in the address in which you wanted to get to in the first place and you’re cool.. Just have to fix the redirect.. maybe.. just a though since you said any advice will be appreciate-d.
Forum: Fixing WordPress
In reply to: My Side bar moves to the bottomTry something like this:
#r_sidebar { margin-right:-3px; }
I know IE likes to add a few pixels now and then..
Forum: Fixing WordPress
In reply to: where to find page ids and category ids?Click on the categories in the admin panel and look at the url.. It has the id’s in em..
Forum: Fixing WordPress
In reply to: WP2.5 problem with have_posts functionI did get that code to spit out the information that it should.. I had to change the permalinks to default.. That code doesn’t work when I customize permalinks.. I would really like to customize permalinks though..
Forum: Fixing WordPress
In reply to: Permalink ProblemBecause I’m trying to use the functions if_user_logged_in to protect certain areas of the rest of my site.. If my blog’s homepage is inside the blog directory any pages on the root directory will not be able to use those functions..
At least that’s the way I see it now.. Perhaps there is a way to do this, but I’m just not seeing it quite yet?? Maybe I have to install the whole blog in the root directory?? I was just trying to avoid that though so it wouldn’t get so cluttered up.. I’m open to suggestions..
Forum: Fixing WordPress
In reply to: WP2.5 problem with have_posts functionno they are not… I am using the code taken right out of the themes index.php that worked for me on v2.3:
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <p class="postmetadata"><?php the_tags('Tags: ', ', ', ''); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here. <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?>
It runs through the code and spits out the else statement.. Somethings gotta give here..
Forum: Fixing WordPress
In reply to: WP2.5 problem with have_posts functionThis is my exact problem as well.. Hope there’s a way to get this to work.. Worked fine in 2.3, but then I upgraded to 2.5 and now on the have_post pages just say, “Not Found Sorry, but you are looking for something that isn’t here.”
Forum: Fixing WordPress
In reply to: Remove specific category from previous/next linksAnybody out there know how to do this one??
Forum: Installing WordPress
In reply to: Blog home page not showing posts..what are you trying to say here??
Forum: Installing WordPress
In reply to: Error when loggin in to admin panelWell the fresh install seemed to work just fine..
Forum: Installing WordPress
In reply to: Error when loggin in to admin panelI first deleted those directories and then uploaded the new versions.. I followed the detailed instructions on wordpress for upgrading.. I’m doing a fresh install now.. I’ll let you know how that goes.. Maybe it will fix my problems.. I just installed the other version last week so I’m not really losing much..
Forum: Installing WordPress
In reply to: Error when loggin in to admin panelAll files are there with permissions of 644. Perhaps I need to do a fresh install..
Forum: Fixing WordPress
In reply to: Condition not working??Wow I didn’t even know there was an IN.. Thanks a bunch Ivovic!!
Forum: Fixing WordPress
In reply to: Sidebar CategoriesYou directed me to where I could find my answer.. Isn’t that enough??
Forum: Fixing WordPress
In reply to: Sidebar CategoriesI got it..
<?php wp_list_categories('exclude=3&show_count=1&title_li=<h2>Categories</h2>'); ?>
Thanks again whistler2020