Recent Topics

1 Jul 20, 2009 07:25    

My b2evolution Version: Not Entered

is it possible to modify comment box ?

I want to make comment box standarized format and many other point of reviews.

for example
one is for voting line as it has curreltly
one for single comment line (not big text box)
one for number comment line
and so on..

I tried to modify like below
if( $Item->can_rate() )
{ // Comment rating:
echo $Form->begin_field( NULL, T_('Your vote'), true );
$Comment->rating_input();
echo $Form->end_field();

}
if( $Item->can_rate() )
{ // Comment rating:
echo $Form->begin_field( NULL, T_('Your vote'), true );
$Comment->rating_input();
echo $Form->end_field();

}

and
I tried

if( $Item->can_rate() )
{ // Comment rating:
echo $Form->begin_field( NULL, T_('Your vote'), true );
$Comment->rating_input();
echo $Form->end_field();

echo $Form->begin_field( NULL, T_('Simple comment'), true );
$Comment->rating_input();
echo $Form->end_field();

}

Important thing is that when the comments clicked, it should show at one comment page as usual.

is that any way to modify like this ?

Please Help..

and I tried this below

$Form->textarea( 'p', $comment_content, $params['textarea_lines'], T_('Receipt or invoice number below'), $note, 50, 'bComment' );
$Form->textarea( 'p', $comment_content, $params['textarea_lines'], T_('Receipt or invoice number below'), $note, 50, 'bComment' );

after this, it show two text comment box, however, when I click for comment, it only accept last text box, ignoring the others.

Please Help.. I want to have many different kind of way to vote and leave comment with many different categozied voting and commenting point of views.


Form is loading...