-
Website
http://blog.slaven.net.au/ -
Original page
http://blog.slaven.net.au/archives/2008/05/16/new-release-for-the-friendfeed-comments-wordpress-plugin-remembering-your-details/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
adapar
3 comments · 3 points
-
Shey
7 comments · 43 points
-
drewolanoff
2 comments · 48 points
-
Phil Glockner
3 comments · 79 points
-
urbansheep
6 comments · 2 points
-
-
Popular Threads
Gone back to 1.4.7 for now
I'm inserting javascript methods into the page header with that hook & if it doesn't run the plugin will fail
being rendered and prototype isn't being included either, it's like the
header function isn't being called at all.
I've just checked in an update that may help, give the WordPress plugin site
10 minutes or so to refresh & then update to version 1.5.1 and hopefully
that will help
cheers
2008/5/18 Disqus <>:
You go and design a new feature and I don't even use it - typical ;)
I have a nitpick about the security note in your post: maybe it would be nice if people are warned that their API keys will be stored in the blog's database in clear text. Otherwise, they might assume a local cookie is handling that bit.
Good work!
Also, I've updated the post to make the security of your API key more clear
Thanks for updating the post, it's much clearer now.
http://blog.mastermaq.ca/images/ffcomments1.gif
Then I click save, and the page goes blank, like this:
http://blog.mastermaq.ca/images/ffcomments2.gif
Any ideas?
shortcuts. I'll get rid of them in the next release
2008/5/27 Disqus <>:
I have put the wp_ffcomments() in the Main Index Template inside the loop like this (its in the fifth line from the bottom of the code) :
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="date"><span><?php the_time('M') ?></span> <?php the_time('d') ?></div>
<div class="title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent link til <?php the_title(); ?>"><?php the_title(); ?></h2>
<div class="postdata"><span class="category"><?php the_category(', ') ?></span> <span class="comments"><?php comments_popup_link('Ingen kommentarer »', '1 Kommentar »', '% Kommentarer »'); ?></span></div>
</div>
<div class="entry">
Skrevet af <?php the_author(); ?>
<?php the_content('Continue reading »'); ?>
<?php
if(function_exists("the_tags"))
the_tags('\\\\ tags: ', ', ', '
');
?>
Trackback URL: <?php the_permalink() ?>trackback/
<?php wp_ffcomments() ?>
</div><!--/entry -->
</div><!--/post -->
<?php endwhile; ?>
I am not the most skilled programmer, so i don't know what i'm doing wrong ...