Recent Topics

1 Dec 15, 2009 06:56    

My b2evolution Version: Not Entered

Hello, I'm looking to add a little more functionality to my blog. My users are not commenting because they are having trouble figuring out that you have to click the post's name to get to the page with the comment form. I'm looking for a way to add a "Click here to comment" button on each post and to also show the most recent comment at the bottom of each. Even better would be if the comment form would pop up in a little box through javascript or some sort of wizardry.

Thanks for the help

2 Dec 15, 2009 13:11

In your skin, add this code and it will have a link to the comment form:

    
$Item->feedback_link(array(
    'type'   => T_('comments'),
));

3 Dec 15, 2009 21:23

Okay, I got the "Leave a comment >>" link to show up on each post, but how do I modify that text to be bigger or change its style? I can't find it in the style sheet or even where this $Item class is created.

4 Dec 15, 2009 21:47

Hi

One way to do it is to add parameters to the feedback_link call to include some html around the link:

$Item->feedback_link( array(
							'type' => 'comments',
							'link_before' => '<span class="comment_link">',
							'link_after' => '</span>',
						) );

You can then style the link based on the comment_link class.

L


Form is loading...