Forums

Join
bbPress Support ForumsPluginscss style bbMP

Info

Tags

css style bbMP

  1. Hi at all, I have a little problem to costumize message with this plugin, I want to change the alt class in alt_pm class but I'm not understand how do this.
    This is php:

    <ol id="thread">
    <?php foreach ( $messagechain as $i => $the_pm ) { ?>
    <li id="pm-<?php echo $the_pm->ID; ?>"<?php alt_class( 'bbpm_thread' );?>>

    <div class="threadauthor"></div>
    <div class="threadpost"></div>

    <?php } ?>

    this is the function

    function thread_alt_class() {
    alt_class( 'bbpm_threads', $this->the_pm['last_message'] == $this->get_last_read( $this->the_pm['id'] ) ? '' : 'unread_posts_row' );
    }

    for you how can I use alt_pm inside alt?

  2. You must log in to post.