Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Looks like you already got taken care of..

    No problem.

    Yea that is possible.

    paste a link to your blog and I will help you out in the morning. I will add the text and html badges to the copy I have here, then you may just upload to your own. From that you will be able to see how I did it and will be much easier for you..

    I did a search to see if I could find plug in .. did not see one on cursory search. you may look around a little more. I have seen pic’s in peoples posts. The reply box and page can be modified to allow people to post pics. Will require little reworking of the code using your editor.

    lol.. they are kind of a hassle.. The right sidebar has two parts to it..a left and a right side.. you can only add additional links/pages or get rid of
    * Development Blog
    * Documentation
    * Plugins
    * Suggest Ideas
    * Support Forum
    * Themes
    * WordPress Planet
    by just clicking a button..

    However, you can change anything you want on either side. You just have to do it using the editor or by copying to notepad and making the changes. Then pasting back to your editor.

    Or copy to note pad

    What are you wanting to add to it?

    If you go to the appearance >editor then click on the side bar link on right hand side of your management panel.. it will open that file and you can begin editing it.

    Look for:

    <div id="sidebar-right">
    
    	<!---put anything you want here-->
    
    			<div id="subfeed" >

    You can add anything you want inside there. Will require little coding. Let me know if you need help.

    hmm. I just downloaded and installed it and worked fine.. All three bars seem to be working..

    confirm this is correct theme

    Sounds like a file permission error…

    What operating system is your server/pc running the blog under.. Windows/Linux?

    <a href="http://www.whatever.com" >Some Text Describing Link</a> then insert that into the index.php file here:

    <div id="content">
    
    	<?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 &raquo;'); ?>
    				</div>
    
    				<p class="postmetadata"><?php if (function_exists('the_tags')) { the_tags('Tags: ', ', ', '<br />'); } ?>Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
    
    			</div>
    
    		<?php endwhile; ?>
    
    		<div class="navigation">
    			<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
    			<div class="alignright"><?php previous_posts_link('Newer 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; ?>
    <!---- PUT YOUR LINKS BELOW HERE--->
    <p><a href="http://www.whatever.com" >Some Text Describing Link 1</a><br />
    <a href="http://www.whatever.com" >Some Text Describing Link 1</a><br />
     </p>
    
    	</div>

    Hope that helps

    Make sure that the file is actually in there or not. ..pathtowordpress/wp-content/themes/page-style/template.php

    If its not. Might consider downloading again, or google your exact question and see if anyone else has that problem.

Viewing 10 replies - 1 through 10 (of 10 total)