Recent Topics

1 Jun 20, 2008 09:29    

My b2evolution Version: 2.x

I want to add "leave a comment" in atom feeder, so people can right away leave a comment for my post.

As default, its only showing "Original post" blogged on "b2evolution".

Is there anyone know what to add to get that?

2 Jun 20, 2008 09:33

Zinden wrote:

My b2evolution Version: 2.x

I want to add "leave a comment" in atom feeder, so people can right away leave a comment for my post.

As default, its only showing "Original post" blogged on "b2evolution".

Is there anyone know what to add to get that?

that's the feed footer in the settings.. it might be applied there too, but dont know bout that..

simply add:

<?php
				// Link to comments, trackbacks, etc.:
				$Item->feedback_link( array(
						'type' => 'feedbacks',
						'link_before' => '',
						'link_after' => '',
						'link_text_zero' => '#',
						'link_text_one' => '#',
						'link_text_more' => '#',
						'link_title' => '#',
						'use_popup' => false,
					) );
			?>

in your _atom skin where you want that link to be displayed[/code]

3 Jun 20, 2008 09:38

I was hoping for changing in settings for footer, i wait a bit longer to see if someone knows if it can be added in there instead.

But thanks for the other solution. Will try it if i dont get anymore responses.


Form is loading...