Forum Replies Created

Viewing 15 replies - 16 through 30 (of 134 total)
  • Thread Starter jorgent

    (@jorgent)

    Problem solved (I hope).

    Thread Starter jorgent

    (@jorgent)

    Hehe, no worries. It’s great that someone can show me the errors when they exist

    Thread Starter jorgent

    (@jorgent)

    Hmm, it doesn’t look like that in IE7, Opera and FF. I probably have some errors in the theme files. I’m a newbie to php and css. Thanks for the screenshot!

    Thread Starter jorgent

    (@jorgent)

    Great, thanks! I should have searched better.. Problem 1 solved!

    I don’t know which words to use to search for my other problem. I’ve tried different words but no luck.

    My other problem is that I want the post title and date on the same line. This is the code I use now:

    <div class="post" id="post-<?php the_ID(); ?>">
    				<h4><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h4><small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>

    When I use this code the date is beneath the title. If I put the </h4> after <?php the_time('F jS, Y') ?> then I get it on the same line but then I can’t have one size on the title and another on the date. What to do?

    Cheers!

    Thread Starter jorgent

    (@jorgent)

    Bumparoo!

    Maybe I can ask about the most important thing first, and that’s the previous/next post problem. Anyone know how to fix it so that it’s possible to click on the links in opera?

    Thread Starter jorgent

    (@jorgent)

    I’m only bumbing this because I’m going away for a couple of days later this afternoon and I’m hoping to get some helpful tips before that πŸ™‚

    Cheers and a good weekend to all!

    Thread Starter jorgent

    (@jorgent)

    Sorry, wrong code.. It was too late to edit the last post.

    It’s the index.php you need I guess.

    <?php get_header(); ?>
    
    	<div id="content" class="narrowcolumn">
    
    	<?php if (have_posts()) : ?>
    
    		<?php while (have_posts()) : the_post(); ?>
    
    			<div class="post" id="post-<?php the_ID(); ?>">
    				<h4><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a> <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></h4></small>
    
    				<div class="entry">
    
    					<?php the_content('Read the rest of this entry &raquo;'); ?>
    
    				</div>
    
    				<p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
    			</div>
    
    <?php $withcomments = true; comments_template();?>
    
    		<?php endwhile; ?>
    
    <div class="navigation">
    			<div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
    			<div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
    		</div>
    
    	<?php else : ?>
    
    		<h2 class="center">Not Found</h2>
    		<p class="center">Sorry, but you are looking for something that isn't here.</p>
    
    		<?php include (TEMPLATEPATH . "/searchform.php"); ?>
    
    	<?php endif; ?>
    
    	</div>
    
    <?php get_footer(); ?>
    Thread Starter jorgent

    (@jorgent)

    Hmm, maybe this is useful to be able to help me. It’s the single.php.

    <?php get_header(); ?>
    
    	<div id="content" class="widecolumn">
    
    	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    
    		<div class="navigation">
    			<div class="alignleft"><?php previous_post_link('&laquo; %link') ?></div>
    			<div class="alignright"><?php next_post_link('%link &raquo;') ?></div>
    		</div>
    
    		<div class="post" id="post-<?php the_ID(); ?>">
    			<h2><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
    
    			<div class="entry">
    				<?php the_content('<p class="serif">Read the rest of this entry &raquo;</p>'); ?>
    
    				<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
    
    				<p class="postmetadata alt">
    					<small>
    						This entry was posted
    						<?php /* This is commented, because it requires a little adjusting sometimes.
    							You'll need to download this plugin, and follow the instructions:
    							http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */
    							/* $entry_datetime = abs(strtotime($post->post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?>
    						on <?php the_time('l, F jS, Y') ?> at <?php the_time() ?>
    						and is filed under <?php the_category(', ') ?>.
    						You can follow any responses to this entry through the <?php comments_rss_link('RSS 2.0'); ?> feed.
    
    						<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
    							// Both Comments and Pings are open ?>
    							You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(true); ?>" rel="trackback">trackback</a> from your own site.
    
    						<?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
    							// Only Pings are Open ?>
    							Responses are currently closed, but you can <a href="<?php trackback_url(true); ?> " rel="trackback">trackback</a> from your own site.
    
    						<?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
    							// Comments are open, Pings are not ?>
    							You can skip to the end and leave a response. Pinging is currently not allowed.
    
    						<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
    							// Neither Comments, nor Pings are open ?>
    							Both comments and pings are currently closed.
    
    						<?php } edit_post_link('Edit this entry.','',''); ?>
    
    					</small>
    				</p>
    
    			</div>
    		</div>
    
    	<?php comments_template(); ?>
    
    	<?php endwhile; else: ?>
    
    		<p>Sorry, no posts matched your criteria.</p>
    
    <?php endif; ?>
    
    	</div>
    
    <?php get_footer(); ?>
    Thread Starter jorgent

    (@jorgent)

    This is just stupid, so I have to share it. After I moved my blog from the sub folder to the root I didn’t change the url on my admin button, so every time I clicked admin I reached the control panel to my blog on the sub folder (I didn’t delete it just in case). So I was actually changing the css to the sub folder blog and at the same time I had another browser tab with the root blog open which I refreshed after making changes. And nothing happend..

    Yet again, Code + me = trouble. But thanks for helping jeremyclark13!

    Thread Starter jorgent

    (@jorgent)

    I don’t have those plugins. Maybe I should just make a clean install. I don’t have any posts or anything yet so why not πŸ™‚

    Thread Starter jorgent

    (@jorgent)

    jeremyclarck13: This is probably a stupid question, but how do I correct that? Code + me = trouble..

    mrkingid: Thanks! I’m using the standard kubrick theme, but I have modified it. I made the design in photoshop and replaced the image files in the kubrick theme with my own image files. And I’ve modified some of the other theme files.

    Thread Starter jorgent

    (@jorgent)

    Hmm, what do I have to change? Is it the table prefix? I thought I could just move the blog and change the URL in options > general, but maybe it’s not that easy since I copied and not moved?

    Thread Starter jorgent

    (@jorgent)

    Hi, thanks for helping!

    I copied it. I couldn’t find a move option in my ftp client so I downloaded the folder and uploaded the files to root.

    Thread Starter jorgent

    (@jorgent)

    Maybe I should make a new and clean install of WP and just apply my theme files to the new install? Or is there an easier way?

    Thread Starter jorgent

    (@jorgent)

    It would be great if I could ask this question on the forum on the website to the plugin, but for some reason I can’t register. But maybe not too many use this plugin?

    Cheers

Viewing 15 replies - 16 through 30 (of 134 total)