• Resolved jonathanbrandon

    (@jonathanbrandon)


    I have found a bug that troubled me, its solution was easy enough. I didn’t cause this bug so I imagine others have it!

    Line 517, wpuf-functions.php

    The following is the list created when outputting the responses to custom fields. The

      tag wasn’t closed by default. I the last line of code I have inserted ‘/’ to close it. I suggest others do the same as otherwise all of the commenting is pushed into the list.

    $extra .= '<ul class="wpuf_customs">';
                foreach ($fields as $field) {
                    $meta = get_post_meta( $post->ID, $field->field, true );
                    if ( $meta ) {
                        $extra .= sprintf( '<li><label>%s</label> : %s</li>', $field->label, make_clickable( $meta ) );
                    }
                }
                $extra .= '</ul>';

    https://ww.wp.xz.cn/plugins/wp-user-frontend/

Viewing 1 replies (of 1 total)
  • Plugin Author weDevs

    (@wedevs)

    Hello Jonathan,

    Ok, I will notify our developer team about this issue. Hope they will fix this very soon.

    Thank you.

Viewing 1 replies (of 1 total)

The topic ‘Bug w/Solution Unclosed’ is closed to new replies.