roopress
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Ping service pings each time we edit post?seems like its tied to spam though. That sucks
Forum: Fixing WordPress
In reply to: Changed WordPress blog URL and site URLwhere did you install your wordpress? Wherever you installed it, make sure it matches the URL in your admin settings
Forum: Plugins
In reply to: [ Plugin: Excerpt Reloaded] Links not validatingAnybody?
Forum: Fixing WordPress
In reply to: How to add bigger space between line breaks?I found the indent settings I need and also was able to come up with an acceptable solution regarding the line breaks. Thanks.
Forum: Fixing WordPress
In reply to: How to add bigger space between line breaks?well my theme is based on OpenBook. You can see the creator’s site at lyxia.org
My site is kinda screwed up though. On my Homepage and category pages, there is only 1 single line break space and also not able to indent. But on my single post, direct link page, there is like double spaces between each line break?
Forum: Plugins
In reply to: [Plugin: wp-polls] Closed polls dont go to archive page?well, its kinda working. The polls are not closing or opening at scheduled times. Then when I manually close the current poll and open the next poll in line, it doesnt show up on the front page. The closed polls do go to the archive now however. It seems like I gotta do one at a time. I have to have only one poll at all times, close it, THEN make a new poll
Forum: Plugins
In reply to: [Plugin: wp-polls] Closed polls dont go to archive page?Thanks man. I checked the options several times and never saw that until now. I probably was working too late! LOL
Forum: Fixing WordPress
In reply to: How to keep same categories on front page at all times?this is what my index page code looks like right now:
<?php get_header(); ?> <div id="content"> <?php $the_query = new WP_Query('showposts=1&orderby=post_date&order=desc&cat='.get_option('featured_post_cat_id')); while ($the_query->have_posts()) : $the_query->the_post(); $do_not_duplicate = $post->ID; ?> <div class="entry"> <div id="post-<?php the_ID(); ?>"> <div class="postinfo"> <h4><?php the_category(', ') ?></h4> <h5> - <?php the_time('F j, Y'); ?> - <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></h5> </div> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <?php the_content('Read the rest of this entry »'); ?> </div></div> <?php endwhile; ?> <?php while (have_posts()) : the_post(); if ( $post->ID == $do_not_duplicate ) { continue; update_post_caches($posts); } ?> <div class="entry2"> <div id="post-<?php the_ID(); ?>"> <div class="postinfo2"> <h4><?php the_category(', ') ?></h4> <h5> - <?php the_time('F j, Y'); ?> - <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></h5> </div> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <div class="post2"><?php the_content('Read the rest of this entry »'); ?></div> <div class="postbot2"> <h4><a href="<?php the_permalink() ?>">Continue ...</a></h4> </div> </div></div> <?php endwhile; ?> <?php if (have_posts()) : ?> <div class="navigation"> <p><?php next_posts_link('« Previous Entries') ?> <?php previous_posts_link('| Next Entries » ') ?></p> </div> <?php else : ?> <div class="entry"> <h2>Not Found</h2> Sorry, but you are looking for something that isn't here. </div> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
******************************************************
what do I need to add to get it to do what I want?? I’ve read several articles on the Loop and still am having a hard time. Help Please!!!
Forum: Fixing WordPress
In reply to: How to keep same categories on front page at all times?Any tutorials on how to accomplish this?
Forum: Fixing WordPress
In reply to: music page w/ audio you can listen to but not downloadJust enter the code in your page. I would recommend a program called Web Jukebox by coffeecup software. Very easy to use and basically does everything for you. You can even download a full trial version.
Forum: Fixing WordPress
In reply to: How to keep same categories on front page at all times?Thanks for the reply krembo. That is pretty confusing. Its gonna take me a while to study that. I’m pretty sure wordpress can do what I am trying to do, but since I’m pretty new to it I know it will take some time.
Forum: Fixing WordPress
In reply to: How to keep same categories on front page at all times?anybody? ??