Recent Topics

1 Jan 08, 2008 07:16    

My b2evolution Version: Not Entered

I'm running b2e on a hosted machine and everything works well.

I've set it so that when users register, they can post to the blog... I suppose that I thought that it would only allow them to COMMENT ... and not add a new BLOG entry.

I guess I wouldn't mind if they added blogs IF the system always showed their usernames at the bottom of each of their additions to the over all blog.

Is there an easy way to do this?

If not - how do you recommend making it so that the blogger can ONLY comment on each of my individual blogs?

Thanks.

A non-IT/PC/internet newbie new to blogging engines.

PAF

2 Jan 08, 2008 15:17

hi rawsushi,

Welcome to the forum.
John gave an answer to your question in another post:
John wrote:

The 2.2.0 set ups vary per skin...
In the "evopress" skin heres what you can do to add the author name beside the post date.
goto ->blogs ->skins ->evopress and open the file called "post.main.php"
find :

<small>
			<?php
				$Item->issue_time( array(
						'time_format' => 'F jS, Y',
					) );
                      ?>
</small>

Replace it with:

<small>
			<?php
				$Item->issue_time( array(
						'time_format' => 'F jS, Y',
					) );
				$Item->author( array(
						'before'    => ', '.T_('by').' <strong>',
						'after'     => '</strong>',
					) );
			?>
		</small>

For the permission question, I think you' d better spend some time in the [url=http://manual.b2evolution.net/Main_Page]docs[/url]. You will also find useful information in the forum. There is a great search function.

Good luck

3 Jan 08, 2008 21:42

Afwas,

Thanks. I searched - apparently didn't use the right search term.

Question - do you know if that will work in b2evolution version 1.9.3 ?

Thanks.

4 Jan 08, 2008 22:10

Question - do you know if that will work in b2evolution version 1.9.3 ?

I'm pretty sure it will


Form is loading...