Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

  • sclough
    Participant

    @sclough

    I never found a solution to this using the bp function calls. I just wrote a custom query joining the tables that returned the data to build the correct links.


    sclough
    Participant

    @sclough

    Sorry, here’s repost of the code. $limit come from the widget setting how many posts can show…

    global $forum_template, $bp;

    if ( bp_has_forum_topics('type=newest&per_page=' . $limit) ) {
    echo '<ul class="latest_form_topics_widget">';
    while ( bp_forum_topics() ) {
    bp_the_forum_topic();
    echo '<li class="forum_topic_widget"><a href="' . bp_get_the_topic_permalink() . '" title="' . bp_get_the_topic_title() . '">' . bp_get_the_topic_title() . ' </a></li>';
    }
    echo '</ul>';
    }


    sclough
    Participant

    @sclough

    I never could get this to work right. I had to instead create a plugin that hooked into actions to save the data and then hooks into the template to add the edit fields on the group profile page.


    sclough
    Participant

    @sclough

    DJPaul, thanks for that idea. I’ll try that!


    sclough
    Participant

    @sclough

    I think my steps are all that’s needed. I was just looking for some confirmation. Hopefully a dev will update the docs with this.

    Now, if I could just figure out how to properly display the html bbPress put on older forum posts ( see https://buddypress.org/forums/topic/how-to-display-html-in-forums )


    sclough
    Participant

    @sclough

    I got the exact same error after those steps. I noticed that if I comment out the lines causing the error, it raises the same error on the next function…


    sclough
    Participant

    @sclough

    I’m really confused. I even tried the previous version of the plugin and it has the same error. I also went ahead and removed the bp-themes directory in case that was an issue. I have checked every single thing I know to (even the mu plugins directory. What could possibly cause this issue?


    sclough
    Participant

    @sclough

    I re-read that page, but I don’t see anything that addressed my issue. I’ve disabled all other plugins (even though they didn’t have buddypress dependencies and I’m just trying to re-activate the plugin.

Viewing 8 replies - 1 through 8 (of 8 total)
Skip to toolbar