Daniella
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't see img in postYes, I used a custom field instead.
Thanks for looking.
I just wondered why the image wouldn’t display if I entered it in the post itself.Forum: Fixing WordPress
In reply to: What to upgrade first?OK. Thank you.
Forum: Plugins
In reply to: Flickr Gallery Number of Thumbs on pageSorry to trouble you…I finally found it.
Forum: Plugins
In reply to: Flickr Gallery Number of Thumbs on pageCan anyone please help with this?
Thanks.Forum: Fixing WordPress
In reply to: Archives not linking to postThank you for your response…
I changed the file name and changed the template name. I’m pretty sure there’s a problem with the loop because of the strange outcome.
The category archive is ok. But when I click on a ‘Monthly Archive’ entry there is a problem. An example under ‘Monthly Archive’ would be if I clicked on a link called ‘Words (3)’ then the title of Word #1 is listed and under that is the ‘Categories’ list and the ‘Monthly Archives’ list. Then the title of Word #2 is listed and under that is the ‘Categories’ list and the ‘Monthly Archives’ list, etc.
Any other ideas? Your help is greatly appreciated.
Forum: Fixing WordPress
In reply to: Archives not linking to postActually, here’s the code:
https://wordpress.pastebin.com/CMSquar6
Thank you!Forum: Fixing WordPress
In reply to: Problem with 'current page item'Hi again,
Well, it worked for highlighting the menu option but now the other links on the page (https://cornhill.org/cornhillbeta/living-here/links/) have the post title for the Gazette page. That wasn’t supposed to happen.
The code:`<div id=”post-entry”><?php
if (is_page(’14’)) {
query_posts(‘cat=3748’);
}if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”postheader”>
<div class=”postthumb”> <a href=”<?php bp_group_permalink() ?>” title=”<?php bp_group_name() ?>”>
<img src=”https://cornhill.org/cornhillbeta/wp-content/themes/bp-community/_inc/images/gazette-blog.jpg” alt=”Gazette” />
</a></div>
<div class=”inner”>
<div class=”top”>
<div class=”postdate”><div class=”leftdate”><?php the_time(‘j’) ?></div><div class=”rightdate”><div class=”rightmonth”><?php the_time(‘F’) ?></div><div class=”rightyear”><?php the_time(‘Y’) ?></div></div></div>
<h1 class=”posttitle”><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?></a></h1>
<div class=”clear”></div>
</div><!–Top–><div class=”bottom”>
<div class=”inner”>
Posted By: <?php the_author_posts_link(); ?> | <?php single_cat_title(); ?> | <?php comments_number(‘0 comments’,’1 comment’,’% comments’); ?>
<div class=”clear”></div><div class=”clear”></div>
</div>
</div>
</div>
</div><div <?php if(function_exists(“post_class”)) : ?><?php post_class(); ?><?php else: ?>class=”post”<?php endif; ?> id=”post-<?php the_ID(); ?>”>
<div class=”post-content”>
<?php the_content(); ?><?php wp_link_pages(array(‘before’ => ‘<p><strong>Pages:</strong> ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
</div></div>
<?php endwhile; ?>
<?php else: ?>
<?php load_template (TEMPLATEPATH . ‘/result.php’); ?>
<?php endif; ?>
<?php wp_reset_query(); ?>
<div class=”clear”></div>
</div>`Thank you so much!
Forum: Fixing WordPress
In reply to: Problem with 'current page item'Worked. Thank you SO much!
Forum: Fixing WordPress
In reply to: List Specific Category Posts on a Page – Not WorkingThanks, Michael. You’re awesome!
Forum: Fixing WordPress
In reply to: List Specific Category Posts on a Page – Not WorkingThanks for the response, but I would like to know how to code this.
Any ideas?I am using 2.9.2 and WP was previously able to send me emails. Logging in using wp_login.php is not problem but I would really like to get wp-admin working.
*wp-admin and how to fix it.
Thank you.
I am having the same problem as of today. I was able to sign in using wp-login.php instead of wp-admin.
However, I would like to know why wp-amdin is not working.
Forum: Fixing WordPress
In reply to: How to have categories and pages together in the header menu ?You have to add that code to the header file after the wp_list_pages code.
Forum: Fixing WordPress
In reply to: widget coding :: orderby not workingIn a site I did, I used the following code (without a widget) to list upcoming events and placed it before the loop:
<?php // Get today's date in the right format $todaysDate = date('Y/m/d'); ?> <?php query_posts('showposts=3&category_name=events&meta_key=Date&meta_compare=>=&meta_value=' . $todaysDate . '&orderby=meta_value&order=ASC'); ?>
The ‘Date’ custom field was in this format: 2010/05/10 00:00:00 and it worked out fine.
Sorry I can’t be of more help.
Good luck.