rusnarod
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove date from postsThanks a lot man! You were right. Once i removed it from archive.php it went away!
Thanks again!
Forum: Fixing WordPress
In reply to: Remove date from postsSo what should i do now? It seems that deleting <?php the_date(); didnt help. The date stamp (as you can see) is still there.
Forum: Fixing WordPress
In reply to: Remove date from postsI think i already did that, and it didnt work. Here is what my index looks like right now.
<div id="content" class="narrowcolumn" role="main"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div <?php post_class(); ?> id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2> <div class="entry"> <?php the_content(__('Read the rest of this entry »', 'kubrick')); ?> </div> <p class="postmetadata"><?php the_tags(__('Tags:', 'kubrick') . ' ', ', ', '<br />'); ?> <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?> <?php comments_popup_link(__('No Comments »', 'kubrick'), __('1 Comment »', 'kubrick'), __('% Comments »', 'kubrick'), '', __('Comments Closed', 'kubrick') ); ?></p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link(__('« Older Entries', 'kubrick')) ?></div> <div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'kubrick')) ?></div> </div> <?php else : ?> <h2 class="center"><?php _e('Not Found', 'kubrick'); ?></h2> <p class="center"><?php _e('Sorry, but you are looking for something that isn’t here.', 'kubrick'); ?></p> <?php get_search_form(); ?> <?php endif; ?> </div>
Forum: Fixing WordPress
In reply to: Remove date from postsanyone?
Forum: Fixing WordPress
In reply to: How to install TEMPLATE TAGS?Got ya!!
Alright well thanks for everything anyway! Best of luck to ya!
Forum: Fixing WordPress
In reply to: How to install TEMPLATE TAGS?You are the best!! thanks so much!
Can you give you your email? so i cant contact you directly in the future if any additional problems arise?
Forum: Fixing WordPress
In reply to: How to install TEMPLATE TAGS?Yeah!! now it works!! i guess that was the problem! The only other question i have is if it’s possible to make the Author’s name appear as a link that, if clicked on, would show the reader the author’s profile page, or at least other posts by that same author.
Thanks for everything!
Forum: Fixing WordPress
In reply to: How to install TEMPLATE TAGS?Alright. I will give it another try when i get home. Do you think the Russian version of archive.php could be different in some way? I will show you what my original code looked like just so you can compare it with the original code that you had.
Thanks for helping me out!! i really apreciate it!
Forum: Fixing WordPress
In reply to: How to install TEMPLATE TAGS?I pasted the new code, except now there appears to be an error. The post is not showing up at all :(((
Here is what i mean:
Forum: Fixing WordPress
In reply to: How to install TEMPLATE TAGS?yeah. the website is called https://www.rusnarod.com. It’s in Russian but i think you will still be able to navigate your way around it. My main page is not a post, but a page, so it’s not supposed to show date and author. But if you click on anything under the “Разное” section, then you will see that the posts in there only show date, but no author.
Forum: Fixing WordPress
In reply to: How to install TEMPLATE TAGS?Any ideas on what else could be the problem?
Forum: Fixing WordPress
In reply to: How to install TEMPLATE TAGS?I did as you instructed me, however it did not fix the problem. The authors name still doesn’t show up…only the date.
Here is what the updated code from /wp-content/themes/default/index.php looks like:
<?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(); ?>"> <h2><a>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2> <small><?php the_time(__('F jS, Y', 'kubrick')) ?> by <?php the_author() ?></small> <div class="entry"> <?php the_content(__('Read the rest of this entry »', 'kubrick')); ?> </div> <p class="postmetadata"><?php the_tags(__('Tags:', 'kubrick') . ' ', ', ', ''); ?> <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?> <?php comments_popup_link(__('No Comments »', 'kubrick'), __('1 Comment »', 'kubrick'), __('% Comments »', 'kubrick'), '', __('Comments Closed', 'kubrick') ); ?></p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link(__('« Older Entries', 'kubrick')) ?></div> <div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'kubrick')) ?></div> </div> <?php else : ?> <h2 class="center"><?php _e('Not Found', 'kubrick'); ?></h2> <p class="center"><?php _e('Sorry, but you are looking for something that isn’t here.', 'kubrick'); ?></p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: How to install TEMPLATE TAGS?Here is the code from my index.php
<?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(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2> <small><?php the_time(__('F jS, Y', 'kubrick')) ?> <!-- by <?php the_author() ?> --></small> <div class="entry"> <?php the_content(__('Read the rest of this entry »', 'kubrick')); ?> </div> <p class="postmetadata"><?php the_tags(__('Tags:', 'kubrick') . ' ', ', ', '<br />'); ?> <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?> <?php comments_popup_link(__('No Comments »', 'kubrick'), __('1 Comment »', 'kubrick'), __('% Comments »', 'kubrick'), '', __('Comments Closed', 'kubrick') ); ?></p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link(__('« Older Entries', 'kubrick')) ?></div> <div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'kubrick')) ?></div> </div> <?php else : ?> <h2 class="center"><?php _e('Not Found', 'kubrick'); ?></h2> <p class="center"><?php _e('Sorry, but you are looking for something that isn’t here.', 'kubrick'); ?></p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: How to install TEMPLATE TAGS?Esmi, could you please lead me through this process? i would greatly appreciate it!
Forum: Fixing WordPress
In reply to: How to install TEMPLATE TAGS?So can you please lead to through the setup process? like what do i need to open what do i need to paste and where?