bjohnm
Forum Replies Created
-
This is, without a doubt the best Facebook integration plugin. I hate to see it has basically been abandoned, as I’m sure eventually it will no longer integrate. However, thank you very much reddalek for solving the problem I had, and helping me get the plugin working once again.
Does anyone know of a supported plugin that does the same thing (i.e. posting the links with excerpts and text, along with the best comment integration I’ve seen)?
OK, I have the custom format exactly as I want it, and it works so long as I use:
[download#id#format=id]
It perfectly displays the one single specific item associated with the id, in the format with the other “id.” (http://testsite.aiimne.org/resource-library/ — site under construction)
But, what I want is a page which lists all the available downloads by category. I can accomplish that using [download_cat#id] (where id= the ID of the category). However, this only lists the “title” of the downloads in the specified category.
I want to list all the downloads in that category with the entry for each item to be in the custom format.
Anyone have an idea how to do that, or does anyone know if it is even possible.
I tried the following:
[#show_downloads#format=1] This results in nothing.
[download_cat#1#format=1] In this format, it seems like it is close, as it returns “No downloads found” (There are downloads in Category 1, and if I just put in [download_cat#1] it works fine by displaying all downloads in the category, but with only the Title.
I’m stuck and would appreciate any help. This would be a huge time saver for me.
Forum: Fixing WordPress
In reply to: Want to change the url of my blogYou know what whooami, Inquire is asking legitimate questions. His question is not about how to use MySQL, but where options need to be changed. This is all about a community, and that’s just no way to talk to a community member. If you don’t want to help…don’t, but there’s no need to be taking someone to task for asking for help. That is not what the WordPress community is about.
Forum: Developing with WordPress
In reply to: exec-php in child pageswprhys, how did you resolve this issue? I think I’m about to have the same issue.
Forum: Plugins
In reply to: CJD Notepad ErrorSorry to bump this, but was hoping someone might be able to offer some assistance or suggestions?
Forum: Plugins
In reply to: IMDB pluginHitmanuk2k:
Unfortunately the developer of RumMovie, a great plugin I used for a very long time, has moved off WordPress. Some months ago he updated it one last time for about three of us that had agreed to kick in some coin. This made it work in 2.1 and up.
Unfortunately, not too long after that, IMDB made some changes to their data schema, which they seem to enjoy doing regularly, so the plugin broke again. Not much hope of an update at this point unless someelse picks it up.
Forum: Plugins
In reply to: Latest Voting Plugin?I believe the Democracy plugin will do what you want.
Forum: Plugins
In reply to: Movie Catalog Plugin? Or help how to fascimilate with out one?There used to be a plugin around called “Structured Blogging” or something like that. I never used it, but you might try looking for that.
It might get you close to what you are looking for.
John
Forum: Your WordPress
In reply to: ControversialNicely done. Clean
Forum: Plugins
In reply to: Need a special Voting Pluginhttp://blog.jalenack.com/archives/democracy/
Democracy plug in does exactly what you are talking about.
Forum: Plugins
In reply to: Need people’s opinions on my pluginegarcia, I’ve been looking for a plugin like this. Your site is pretty much all about movies, and I’m glad I found it. My site is about many things, but I enjoy reviewing the movies I go see, and have wanted to include the ability to do “ratings.” My own and readers…so I can’t wait for you to make this available.
Anyway, I was wondering, will be “optional” per post. I mean, can I turn it on for the posts about movies (or anything else that needs rated), and not have it showing for every other post?
Forum: Fixing WordPress
In reply to: Displaying Version Number in a pageThank you Podz. I knew there had to be a way.
Forum: Everything else WordPress
In reply to: Dashboard v 1.5.2 feeds disappeared?I have experienced the same thing.
Forum: Themes and Templates
In reply to: Page NavigationI was proud of myself for reading the codex and figuring out how to make a category template for a specific category on my blog at http://deep.mastersfamily.org. The Category is “Movies I Own.” Sorts in alphabetical order, uses only the excerpt.
However, as I’ve now entered the movies, I find that it gets stuck at four pages. In other words, once the number of movies gets long enough to require more than four pages to display, it simply stops are page four. The movies are there. I can adjust the number of posts per page for the category so that less than four full pages are required, and all the entries are there, but if I shorten the count, and put it over four pages, they simply don’t display.
Here is the code for this category template. If anyone has an inkling of what might be causing this, I sure would appreciate the help.
<?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
<?php
// we add this, to show all posts in our
// Glossary sorted alphabetically
$posts = query_posts($query_string .
‘&orderby=title&order=asc&posts_per_page=5’);if (have_posts()) : ?>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h2 class=”pagetitle”>Archive for the ‘<?php echo single_cat_title(); ?>’ Category</h2><?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h2 class=”pagetitle”>Archive for <?php the_time(‘F jS, Y’); ?></h2><?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h2 class=”pagetitle”>Archive for <?php the_time(‘F, Y’); ?></h2><?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h2 class=”pagetitle”>Archive for <?php the_time(‘Y’); ?></h2><?php /* If this is a search */ } elseif (is_search()) { ?>
<h2 class=”pagetitle”>Search Results</h2><?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h2 class=”pagetitle”>Author Archive</h2><?php /* If this is a paged archive */ } elseif (isset($_GET[‘paged’]) && !empty($_GET[‘paged’])) { ?>
<h2 class=”pagetitle”>Blog Archives</h2><?php } ?>
<div class=”navigation”>
<div class=”alignleft”><?php posts_nav_link(”,”,’« Previous Entries’) ?></div>
<div class=”alignright”><?php posts_nav_link(”,’Next Entries »’,”) ?></div>
</div><?php while (have_posts()) : the_post(); ?>
<div class=”post”><?php echo c2c_get_custom(‘image’); ?>
<h3 id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h3>
<div class=”entry”>
<?php the_excerpt(); ?>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”>Read more »</div>
<div class=”alignright”>
<?php comments_popup_link(‘No Responses »’, ‘1 Response
»’, ‘% Responses »’); ?>
</div>
<small> -Written by <?php the_author() ?> on <?php the_time(‘l, F jS, Y’) ?><br/>Filed under <?php the_category(‘, ‘) ?></small><!–
<?php trackback_rdf(); ?>
–>
</div>
<div class=”prepost”>
</div><?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php posts_nav_link(”,”,’« Previous Entries’) ?></div>
<div class=”alignright”><?php posts_nav_link(”,’Next Entries »’,”) ?></div>
</div><?php else : ?>
<h2 class=”center”>Not Found</h2>
<?php include (TEMPLATEPATH . ‘/searchform.php’); ?><?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Forum: Your WordPress
In reply to: eLearning Design ChallengeDoes WYSIWYGPro provide support for spell checking?