Lori
Forum Replies Created
-
Forum: Plugins
In reply to: [MP3-jPlayer] [Plugin: MP3-jPlayer] Works well, customizableHi Simon, thanks so much! Somehow I had missed the “show player on posts index” setting. Making sure that was checked did the trick!
Now all I need to do is widen the sidebar widget player by about 20px. I am looking at the mp3jplayer-grey-sidebar.css file — is that where I should put the changes? Is it too much to ask for some pointers about which widths I would need to change (there are so many)?
Thanks,
LoriForum: Plugins
In reply to: [MP3-jPlayer] [Plugin: MP3-jPlayer] Works well, customizableHi! I’ve just installed the plugin and am trying to use the sidebar widget. It shows up, but not on my index page, only in the sidebar of my other blog pages. Could you give me any clues about how I can get the widget to show up in my sidebar on my main page?
I’ve tried various settings on the “page filter” section of the widget, but can’t get anything that works. The main site index does not have a “page ID” so I am not sure what to enter in the “include” field (putting “index” doesn’t work.
Thanks in advance for any help!
Forum: Fixing WordPress
In reply to: Help creating a category archive (or child page archive)Hi, and thanks so much for the advice!
I’m a bit confused still, so I hope you (or others here) won’t mind a follow-up:
If we say that I commit to the “page” approach, would this first template code go in the template for the parent page or for each child page?
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( 'posts_per_page' => 10, 'paged' => $paged, 'caller_get_posts' => 1, 'post_type' => 'page', 'post_parent' => 45, // The ID of the parent page 'orderby' => 'title', 'order' => 'ASC' ); query_posts($args)
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Thumbnail page leaves random blank spotsI had the same problem. What worked for me was changing the “number of columns” setting in Options>Gallery>Gallery settings
I changed it from “0” (max number allowed by theme constraints) to “4”. Set at “0” it tried to give me 5 columns, but there were erratic blank white spaces that didn’t go away no matter what “sort order” I tried. But changing the number of columns to “4” did the trick.
Forum: Fixing WordPress
In reply to: Configuring non-configurable widgets in 2.2I found the answer to my own question. The widgets now (ver 2.2.1) live in the widgets.php file. Posting this just in case it helps someone else ??
Forum: Themes and Templates
In reply to: problems w next_post and previous_post in almost springThanks a lot! That really helped and I’m on the right track now. ??
D.
Forum: Themes and Templates
In reply to: problems w next_post and previous_post in almost springThanks for looking in so quickly, Moshu. From that page it seems like I was barking up the wrong tree with next_post() etc.
I’m not sure I’ve been able to explain what I actually wnat to do. If I want to have something like
<< previous post | home | next post >> at the top of individual post pages, which template tags should I use, and where should I put them?
As an experiment I tried putting this
<div style=”text-align:center;”>
<?php posts_nav_link(‘ · ‘, ‘previous page’, ‘next page’); ?>
</div>after this
<div class=”post” id=”post-<?php the_ID(); ?>”>in index.php
But nothing shows up…
Apologies in advance for extremely ugly code…
D.