-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- I have version 3.5 beta with Wordpress 2.6.1 and the verse didn't refresh for me either. I deactivated the plugin and changed the line of code that is <code>wp_schedule_event(0, 'daily', ...
- Nice plugin but when I used it the first time it looks... wrong. Than I used firebug on it and found out, that the pathes where wrong, because I have my WP in a subdirectory. I looked into friendfeed-comments.php ...
- Works like a dream. Would it be possible to add the FF likes/comments info on the post summary in wordpress (much like it says how many normal comments are in the post)?
- how lucky you are.. here in my country, only a little area coverage by google map, i build website with google map feature, but not working properly
- How i can show normal comments and Friendfeed comments together like at <a href="http://www.readwriteweb.com/archives/readwriteweb_integrates_friendfeed_comments.php">RWW?</a>
Jump to original thread »
New release for the FriendFeed Comments WordPress plugin - remembering your details
Started by Glenn Slaven · 3 months ago
I’ve just checked in a new version of the FriendFeed Comments plugin, which you can download here. If you’ve already got it installed it should be showing up that an update’s available any moment now.
There’s a lot of code tidy ups and debug improvements, but the major change is the addition of the ability to [...] ... Continue reading »
There’s a lot of code tidy ups and debug improvements, but the major change is the addition of the ability to [...] ... Continue reading »
3 months ago
3 months ago
3 months ago
3 months ago
Gone back to 1.4.7 for now
3 months ago
I'm inserting javascript methods into the page header with that hook & if it doesn't run the plugin will fail
3 months ago
3 months ago
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 <>:
3 months ago
3 months ago
3 months ago
You go and design a new feature and I don't even use it - typical ;)
3 months ago
3 months ago
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!
3 months ago
Also, I've updated the post to make the security of your API key more clear
3 months ago
Thanks for updating the post, it's much clearer now.
2 months ago
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?
2 months ago
2 months ago
shortcuts. I'll get rid of them in the next release
2008/5/27 Disqus <>:
2 months ago
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 ...