bbPress Plugin Browser »

Ajaxed Quote (1.2)

Download

Version: 1.2

Last Updated: 2009-7-23

Requires bbPress Version: 1.0 or higher

Compatible up to: 1.0.1

Author Homepage »

Plugin Homepage »

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(5)

Your Rating

Author: Eduardo Graells


  1. topol

    Member

    i've found the solution of my problem....

    The plugin looks for a "quote.ajax.php" in a "my-plugins" folder... I don't know why it is so.
    The "fix" is to change all inclusions of word "my-plugins" in bb-settings.php to "bb-plugins"

    Posted: 2 years ago #
  2. That's because you should install the plugin in the my-plugins folder. bb-plugins is for core plugins only. The "fix" is to move the plugin to my-plugins instead of replacing text inside the plugin ;)

    Posted: 2 years ago #
  3. Tomcraft1980

    Member

    Got it to work, works perfect, thx!

    Posted: 2 years ago #
  4. Just got this to work in my 1.0.2 installation, using the iNove theme. All I had to do was go into post.php and edit this line (~line 11):

    <div class="poststuff"><?php printf( __('Posted %s ago'), bb_get_post_time() ); ?> <a href="<?php post_anchor_link(); ?>">#</a> <?php post_ip_link(); ?> <?php post_edit_link(); ?> <?php post_delete_link(); ?></div>

    To this:

    <div class="poststuff"><?php printf( __('Posted %s ago'), bb_get_post_time() ); ?> <a href="<?php post_anchor_link(); ?>">#</a> <?php bb_post_admin(); ?></div>

    That is, I had to add <?php bb_post_admin(); ?> to that line. I cut out the other junk because it was redundant (try adding just the bb_post_admin call to the end and see).

    Posted: 2 years ago #
  5. Thanks, works great

    Posted: 2 years ago #
  6. how can I edit this so that nested blockquote ARE NOT removed?

    Posted: 2 years ago #
  7. seems to work if I change in quote.php :

    $text = preg_replace( '/<blockquote>((.|[\n\r])*?)<\/blockquote>/', '',$post->post_text );

    to

    $text = ($post->post_text);

    Posted: 2 years ago #
  8. this plugin also seems to create a clash with adding tags in topics. Automatic feedback for adding a tag via ajax no longer works in some topics... anyone have any ideas?

    Posted: 2 years ago #
  9. re: my previous comment, the clash with adding tags was caused by an extra space after the final ?> in the quote.php file, just something to be careful of!

    Posted: 2 years ago #
  10. I have a little problem, in local is all OK if I put thw plugin online i get this error
    http://www.endurodoc.net/forum/my-plugins/ajaxed-quote/quote.ajax.php?_wpnonce=d9d809dffb&quoted=1 404 Not Found 1.18s

    with firebug.

    Posted: 1 year ago #

RSS feed for this topic

Add a Comment

You must log in to post.