The MU forums have moved to WordPress.org

Two new plugins (List All Posts and Feedback) (77 posts)

  1. Cruz
    Member
    Posted 17 years ago #

    Ah great. Found it, the "_wp" prefix is assigned in the script =)

  2. Cruz
    Member
    Posted 17 years ago #

    For the last 3 parameters, the order is:

    READ_MORE
    SHOW_AUTHOR
    SHOW_BLOG

    I'm reporting that posts are properly displayed if I use:
    'show','show','show' for the last 3 parameters.

    However, the author name fails to display if I use:
    'show','show','hide'

    The hiding of the blog seems to hide author at the same time. Are you also having the same issue?

  3. Cruz
    Member
    Posted 17 years ago #

    I noticed another thing. A post is fetched even after the blog user remove the post. The removed post shows up as
    ".. (Read More)"

  4. Cruz
    Member
    Posted 17 years ago #

    Hello Lal,

    What I did was that I placed the html to call for the image directly at TITLE_BEGIN_WRAP. Hope this helps.

  5. andrewbillits
    Member
    Posted 17 years ago #

    Cruz,

    Hmm, i'll look into that one. The whole "shows when a comment is added bug" is not really making me lose sleep. However, the bug you mentioned above could be really annoying.

  6. Lal
    Member
    Posted 17 years ago #

    Cruz, I still cant seem to figure it out. Lol. Show me with an example and the line number. Haha. I am being dumb.

  7. Cruz
    Member
    Posted 17 years ago #

    Hey Lal,
    This may not be pretty for some, but works with me.

    <?php list_all_wpmu_posts(5, 150, '', '', '<img src="http://IMAGE-LOCATION"> <b>', '</b>','show','show','hide'); ?>

  8. Cruz
    Member
    Posted 17 years ago #

    Um, the third and fourth parameters are not showing up correctly on the forum. But basically it's P and /P.

  9. Cruz
    Member
    Posted 17 years ago #

    Hi guys,

    Is there ways that we can use the list-all-post plugin with the Dan's avatar plugin?

    http://cheesemasterdan.com/wordpress/word-press-plug-ins/dans-avatar-thingy/

  10. Lal
    Member
    Posted 17 years ago #

    well well, at last, i have done it right. thanks to Cruz. And now to try to do the same with the List-all. Heh.

  11. Lal
    Member
    Posted 17 years ago #

    Ok successfully done it through the List-all plugin.

    And then again, now - how do i show ONLY the POST TITLES using List-all-posts plugin, excluding and hiding the summary. When I use 0, the full blog post showed. Heh.

    And oh, I am thinking -- say some of the post titles of the bloggers are is capital letters, How do I make it in such a way to Sentence case them? Is that possible? Well, i thought there should be an uniformity with the looks of my site. :-D

  12. mrjcleaver
    Member
    Posted 17 years ago #

    I created widgets for these: http://codex.wordpress.org/WPMU_Widgets

  13. suleiman
    Member
    Posted 17 years ago #

    While the plugins and widgets rock, I should point out to folks that blogs marked as spam still have their posts show up on these lists.

    Instead I opted to have my posts displayed via RSS.

  14. nnScott
    Member
    Posted 17 years ago #

    @ Lal

    And then again, now - how do i show ONLY the POST TITLES using List-all-posts plugin, excluding and hiding the summary. When I use 0, the full blog post showed. Heh.

    This a pretty dirty fix but if you open "list-all-posts.php" and delete the code shown below at or around line:93 it will stop showing previews of the content.

    echo $begin_wrap . strip_tags($tmp_post_content) . $end_wrap;

    You also have to set "WORD_LIMIT:" to zero (where you are calling the script to display) such as...

    <?php list_all_wpmu_posts(5, 0, '', '', '', '','hide','hide','show'); ?>

    Hope this helps.

  15. qza
    Member
    Posted 17 years ago #

    In Feedback plugin, when someone posts feedback in non-english characters, plugin automatically converts it to strange characters like following:
    %u0431%u043E%u043Bu0448%u0430%u043B%u0433%
    Where do I have to modify plugin to make it work with UTF-8 characters?

  16. bmonster99
    Member
    Posted 16 years ago #

    Another way to skip the 'Hello World!' posts:

    In list-all-posts.php, change this line:

    if ($bid == 1) {
    //skip if main blog

    to this:

    if ($bid == 1 || (!strcasecmp($tmp_post_title, 'hello world!'))) {
    //skip if main blog or default post
  17. alexguzun
    Member
    Posted 15 years ago #

    Hi all, anyone know how to modify the List-All (http://wpmudevorg.wordpress.com/project/List-All-%5Bwidgets%5D) widgets to display as follow:

    -----
    New Blogs

    blog1Link
    First two lines from About info
    Registered at {date}

    blog2Link
    First two lines from About info
    Registered at {date}
    -----

    -----
    Updated Blogs

    blog1LinkToRoot
    LatestPostNameLink
    FirstLineOfText
    Posted at {date}

    blog2LinkToRoot
    LatestPostNameLink
    FirstLineOfText
    Posted at {date}
    -----

    Or any place to donate the customization effort?
    Thank you

About this Topic

  • Started 17 years ago by andrewbillits
  • Latest reply from alexguzun