The admin link that gives access to the dashboard is missing (https://www2.ub.edu/gracmon/fotoconnexio/), don’t know exactly when it disappeared. This happens only for the Journalist theme.
I’m using WP version 2.9.2. All I did so far was importing some data from a wp.com blog, setting up the Journalist theme, and testing a Simple Forum plug-in by installing and finally removing it. I’ve already tried to remove and re-install the theme with no results.
Any help appreciated!
Xurxo
]]>I wasnt able to figure out the fix for the journalist theme by reading other thread suggestions, so starting a new thread.
Below is what inxed.php looks like, single.php is pretty much the same. The title is the only text that gets translated.
any suggestions? Thanks in advance.
<?php get_header(); ?>
<div id="content" class="group">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<p class="comments"><a href="<?php comments_link(); ?>"><?php comments_number('without comments','with one comment','with % comments'); ?></a></p>
<div class="main">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<div class="meta group">
<div class="signature">
<p>Written by <?php the_author() ?> <span class="edit"><?php edit_post_link('Edit'); ?></span></p>
<p><?php the_time('F jS, Y'); ?> <?php _e("at"); ?> <?php the_time('g:i a'); ?></p>
</div>
<div class="tags">
<p>Posted in <?php the_category(',') ?></p>
<?php if ( the_tags('<p>Tagged with ', ', ', '</p>') ) ?>
</div>
</div>
<?php if ( comments_open() ) comments_template(); ?>
<?php endwhile; else: ?>
<div class="warning">
<p>Sorry, but you are looking for something that isn't here.</p>
</div>
<?php endif; ?>
<div class="navigation group">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
]]>I found this – https://www.themelab.com/2008/04/24/how-to-add-wordpress-tag-support-to-your-theme/ – but couldn’t get it to work. Also when trying to add the tag cloud under the widgets to the sidebar, it made it so only the tag cloud appeared (and wouldn’t allow anything else to be moved to the sidebar) and the modification from cloud to list didn’t work although as I do want the other items defaulted in the journalist theme – archive, categories, search – to remain so this wouldn’t be a complete solution anyway.
My blog – https://hockeyphotography.com/blog
I’m pretty much an eejit and need every step spelled out – hope someone might be bored and feel like helping :-).
thanks
]]>My problem is after I post a blog I expect to see a leave comments
form at the bottom of the post. I don’t see this. I see a ‘without comments’ link at the top of the post. After I click this link, I get the you must register to post comments message.
How do I get the post comments from to appear at the bottom of each post with the boxes tagged with the “*required” notification?
Maybe try a different theme? I like the journalist them and don’t
want to switch if I don’t have to.
Thanks for your help.
]]><?php get_header(); ?>
<?php
if (is_home()) {
query_posts("cat=-29");
}
?>
<div id="content" class="group">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<p class="comments"><a href="<?php comments_link(); ?>"><?php comments_number('comments','with one comment','with % comments'); ?></a></p>
<div class="main">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<div class="meta group">
<div class="signature">
<p>Written by <?php the_author() ?> <span class="edit"><?php edit_post_link('Edit'); ?></span></p>
<p><?php the_time('F jS, Y'); ?> <?php _e("at"); ?> <?php the_time('g:i a'); ?></p>
</div>
<div class="tags">
<p><?php if(function_exists('wp_email')) { email_link(); } ?></p>
<p><?php if(function_exists('wp_print')) { print_link(); } ?></p>
</div>
</div>
<?php if ( comments_open() ) comments_template(); ?>
<?php endwhile; else: ?>
<div class="warning">
<p>Sorry, but you are looking for something that isn't here.</p>
</div>
<?php endif; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
]]>