Lorelle
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: “Pages” all give 404 errorsAnd see this: http://wordpress.org/support/topic/189058
Forum: Everything else WordPress
In reply to: WordPress Meet-up / User-group (Portland, OR) ?That link is to WordCamp Portland, and I’ll be there. Free hugs for everyone with a good WordPress tip for me!
Forum: Developing with WordPress
In reply to: Index page with daily archive separatorControl over the placement of the icon is through the CSS styles. Set that style to include the image alignment to the right.
But you have bigger problems. You’ve either removed or didn’t pick up any of the DIV nor spans required to associate the styles with the HTML. You’ve also put in archaic font colors and code which must be removed and put in the stylesheet.
Go back to the original sources of the code and copy them, including the DIV wrappers which include CLASS and ID identifiers. In the styles.css file is the place to change the color, alignment, and placement, not the template files.
I know you want your web design to emulate another design, and you want it to look a particular way, but you are delving into places where, if you really don’t know how to do this, you are going to waste more time, energy, and money poking and prodding this.
I recommend you take this very slow and carefully, and get personal help from someone familiar with web design close to you.
Or go carefully through the WordPress Lessons in the WordPress Codex, the manual for WordPress users, to figure out how to do this.
Have you contacted the designer of the site you want to emulate for their help?
Forum: Developing with WordPress
In reply to: Index page with daily archive separatorThat “look” of the arrow next to the post title or the page icon to the right of the Date?
Both are easily added by adding the image to the link. There are a variety of ways to do this. The most simple method is to add the image within the link and style it with some CSS.
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?><img src="/images/pageicon.gif" alt="page link to date" class="date-title-right" /></a></h2>Something like that would work.
Or are you talking about creating a date archive?
Hmm, I think you can do that using the
date.phptemplate page as described in Template Hierarchy and is similar to Category Templates and Creating an Archive Index.Forum: Developing with WordPress
In reply to: Index page with daily archive separatorHere are some more resources for the answer:
posts_groupby
Posting the same day with date displayed for each post.I’ll keep looking later to find a Theme with that specific layout. Anyone else know of one right off the top?
Forum: Developing with WordPress
In reply to: Index page with daily archive separatorThis is actually fairly common and found in many WordPress Themes. I’m hunting for an example but I’m on the road traveling so you or someone else might find it faster. You may also try this bit of code example and I’ll hunt for more.
Forum: Fixing WordPress
In reply to: Home link under Pages in sidebar – 2.1In your WordPress Theme files, find
sidebar.php. This is your sidebar template file.Every WordPress Theme has similar but different structure for the sidebar links. You will want to look for something labeled “Pages”, though it might be different for your Theme.
The “correct” structure, replacing the information with your URL and desired effect, would be:
<ul id="pageslist"> <li><a href="/index.php" title="Home Page">Home</a></li> <li><a href="/index.php?cat=7" title="Category Something">Specific Category Link</a></li> <li><a href="http://example2.com/" title="Another Blog">Another Blog Link</a></li> <li><a href="http://example.com/a-blog-post" title="A specific post on your blog">A Blog Post Title</a></li> <?php wp_list_pages('exclude=2, 6, 4&depth=1&use_desc_for_title=0&sort_column=menu_order&title_li='); ?> </ul>The above example includes:
* A link to your home page (index.php)
* A link to a specific category of posts you might want to feature
* A link to an external blog, such as another blog of yours or a favorite blog you recommend
* A link to a specific post (or Page) you may want to feature
* A list of links to your blog Pages (like About, Contact, etc.) which does not include category IDs for 2, 6 and 4, nor subPages. The list of Pages is in menu order and includes other formating instructions.You can mix and match and order this anyway you like in the
sidebar.phptemplate file.This same structure can work for featuring “static” links in the footer and header if desired.
Forum: Fixing WordPress
In reply to: Avoid to display sub categories with WP 2.1Also try:
<?php wp_list_categories('show_count=1&use_desc_for_title=0&title_li=0&exclude=1, 16, 28, 29, 44, 72, 9'); ?>This will show a list of the categories without a title (such as “categories”, if you have your own title), with a post count per category, and shows the list of categories EXCEPT for the ones listed. List as many as you want NOT to appear in the list.
Forum: Installing WordPress
In reply to: New wp_list_categories() template fileTo prevent categories from being displayed, put them in an “excludes” parameter:
<?php wp_list_categories('show_count=0&use_desc_for_title=0&title_li=0&exclude=1, 16, 30, 31, 32, 78, 80, 9'); ?>This will generate a list of categories, except for those listed, without a post count, and no title for the list.
Forum: Everything else WordPress
In reply to: WordPress.com blogs not working at the moment?The announcement on the site says that there is a problem with the servers. It could be anything, but the site should be back online very soon. Hang in there.
The WordPress.com site is down, as is WordPress.com Forums, which could also mean that Akismet might also be down. I’m checking on that.
Forum: Everything else WordPress
In reply to: HTML code help pleaseIt’s called a “jump to target” link, in old fashioned lingo.
<a href="/page-name#tohere">jump to here</a>Would take the user to:
<a name="tohere"></a>You can customize it from there with whatever you want.
Forum: Themes and Templates
In reply to: display page content followed by all posts of a given catagoryWell, you can do this easily (for the post lists) with Category Templates, especially the customized versions described there. That would do it.
If you are SET on having these listed on a Page, then check out Creating an Archive Index or this tip for improving your archives Page.
I also recommend you check out the Customizable Post Listings WordPress Plugin to help you create lists of posts limited to a specific category.
Forum: Themes and Templates
In reply to: Using The Loop in a Page TemplateI recommend you check out Creating a Static Front Page, The Loop in Action. A query may be your best bet, though.
Forum: Fixing WordPress
In reply to: Posting using my name and not somebody elsesIf you are set as the main administrator, then that’s how it is supposed to work. You can restrict yourself as the Admin to a lessor role, but that might cause a problem in the future.
Check under your Profiles to make sure which account has which permissions. Also check the WordPress Codex for Roles and Capabilities and you might consider using the Role Manager Plugin.
Forum: Installing WordPress
In reply to: WordPress 2.1If the page cannot be displayed on your blog, that could mean that there is an error in the WordPress Theme that stops a Plugin or code from working. That could account for the refresh problems.
Have you checked to see if your WordPress Theme and WordPress Plugins are on the compatibility lists: WordPress Plugin Compatibility List and WordPress 2.1 Theme Compatibility List.
This could account for all your troubles.