Forum Replies Created

Viewing 15 replies - 1 through 15 (of 27 total)
  • Forum: Fixing WordPress
    In reply to: CSS link color
    Thread Starter nld2756

    (@nld2756)

    thank you for the fast reply, but that isn’t working.

    Forum: Fixing WordPress
    In reply to: CSS link color
    Thread Starter nld2756

    (@nld2756)

    superfoodacai.net

    Forum: Plugins
    In reply to: Featured Posts Slidshow
    Thread Starter nld2756

    (@nld2756)

    anyone know?

    Forum: Fixing WordPress
    In reply to: Excerpt problem
    Thread Starter nld2756

    (@nld2756)

    Oh man… thank you for giving all of this advice. youve been a great help… I think i finally got it:). The only last, and final problem.. ( i think there is a simple answer)

    https://www.passiveguide.com/category/passive-income/internet-slug/wordpress/

    is it normal for there to be an excerpt on the front page, then when you go to the link “Filed Under WordPress | Leave a Comment” that it links to the page above, in excerpt form? I really dont know what that link was created for. The direct link to the article is

    https://www.passiveguide.com/the-top-5-wordpress-widgets/

    Forum: Fixing WordPress
    In reply to: Excerpt problem
    Thread Starter nld2756

    (@nld2756)

    Alright, thank you, i have actually found out the major problem…

    the excerpts seem to be working for the most part, now in the single.php this is the code

    <?php
    /**
     * @package WordPress
     * @subpackage Default_Theme
     */
    
    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 <?php post_class() ?> id="post-<?php the_ID(); ?>">
    
    			<h2><?php the_title(); ?></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')); ?>
    				<?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
    
    				<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:
    							https://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 post_comments_feed_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(); ?>" 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(); ?> " 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(); ?>

    The page doesnt show the right and left columns….

    i tried adding

    <?php include(TEMPLATEPATH."/l_sidebar.php");?>
    
    <?php include(TEMPLATEPATH."/r_sidebar.php");?>

    to various places but i could never get the left column into where it was suppose to be. Wierd because the right column would fit nicely in the right column..

    Forum: Fixing WordPress
    In reply to: Excerpt problem
    Thread Starter nld2756

    (@nld2756)

    Hello, ive tried that already and it hasn’t seemed to be working

    this is part of the index.php

    <div id="contentleft">
    
    <?php if (have_posts()) : while (have_posts()) : the_posts(); ?>
    
    	<h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    	Posted on <?php the_time('F j, Y'); ?>Filed Under <?php the_category(', ') ?> | <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?>
    
    	<?php the_content(__('Read more'));?><div style="clear:both;"></div>
    
    	<!--
    	<?php trackback_rdf(); ?>
    	-->
    
    	<h3>Comments</h3>
    	<?php comments_template(); // Get wp-comments.php template ?>
    
    	<?php endwhile; else: ?>
    
    	<?php _e('Sorry, no posts matched your criteria.'); ?>
    <?php endif; ?>
    	</div>

    and this is part of the page.php

    div id="contentleft">
    	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    	<h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    	<?php the_content(__('Read more'));?><div style="clear:both;"></div>
    
    	<!--
    	<?php trackback_rdf(); ?>
    	-->
    
    	<?php endwhile; else: ?>
    
    	<?php _e('Sorry, no posts matched your criteria.'); ?>
    <?php endif; ?>
    	<?php posts_nav_link(' — ', __('&laquo; go back'), __('keep looking &raquo;')); ?>
    
    	</div>

    and no, i dont have a single.php….

    how do i fix all my problems?

    Forum: Themes and Templates
    In reply to: wrapping text
    Thread Starter nld2756

    (@nld2756)

    anyone know why ?

    ok?

    Thread Starter nld2756

    (@nld2756)

    Alright, I have it horizontally aligned how i like it,

    .headerright {
    	background: #000000
    	width: 84px;
    	height: 500px;
    	float: right;

    i would now like to center it between the top, and bottom of the header, and im pretty bad at css, how do i do this?

    Thread Starter nld2756

    (@nld2756)

    @whooami: the only thing i edited was the “have a nice day”, also, thank you for your advice.

    @figaro, thank you very much for your help. there are a few problems with that method though, one, it eliminates the header, and 2, adsense is not a picture, it is a script

    <script type=”text/javascript”><!–
    google_ad_client = “pub-8798923392924306”;
    /* top banner */
    google_ad_slot = “8604186364”;
    google_ad_width = 728;
    google_ad_height = 90;
    //–>
    </script>
    <script type=”text/javascript”
    src=”https://pagead2.googlesyndication.com/pagead/show_ads.js”&gt;
    </script>

    who are you using to generate those ads?

    Thread Starter nld2756

    (@nld2756)

    refrain from getting offensive. I just would like to know how to do this.. if someone would answer, then i would obviously quit bumping..

    and like i stated, i know how to get rid of the feed.

    have a great day ??

    Thread Starter nld2756

    (@nld2756)

    bump

    Thread Starter nld2756

    (@nld2756)

    bump

    Thread Starter nld2756

    (@nld2756)

    hmm.. you set me on the right track, my calculations just arent adding up or something, ill finish this another time..

    you are a god, thank you lol

Viewing 15 replies - 1 through 15 (of 27 total)