Recent Topics

1 Dec 22, 2009 10:21    

My b2evolution Version: Not Entered

Could u please be specific which exact pages containing that code . such that we can copy.
we are knew in php,not an expert.

please we request yo detailed explanation on how to do that.

which pages,where,copy this n that,place where,
i want such guidelines.(This is in reference to showing users image on his page,last post by Dawood)
kindly assist

2 Dec 22, 2009 11:24

For all those other members having the same problem like mine(user picture not showing), jus copy that code as mr.fplonque sayz from the default skin and then paste it anywhere u like inside single.main.php file of any of yo favourite skin.
Thanks Mr.fp.lonque.

<p class="postmetadata alt">
			<small>
				<?php
					$Item->author( array(
							'link_text'    => 'avatar',
							'link_rel'     => 'nofollow',
							'thumb_size'   => 'crop-32x32',
							'thumb_class'  => 'leftmargin',
						) );
				?>
				<?php
					$Item->issue_time( array(
							'before'      => /* TRANS: date */ T_('This entry was posted on '),
							'time_format' => 'F jS, Y',
						) );
				?>
				<?php
					$Item->issue_time( array(
							'before'      => /* TRANS: time */ T_('at '),
						) );
				?>
				<?php
					$Item->author( array(
							'before'      => T_('by '),
						) );
				?>
				<?php
					$Item->categories( array(
						'before'          => ' '.T_('and is filed under').' ',
						'after'           => '.',
						'include_main'    => true,
						'include_other'   => true,
						'include_external'=> true,
						'link_categories' => true,
					) );
				?>

				<?php
					// List all tags attached to this post:
					$Item->tags( array(
							'before' =>         ' '.T_('Tags').': ',
							'after' =>          ' ',
							'separator' =>      ', ',
						) );
				?>

				<!-- You can follow any responses to this entry through the RSS feed. -->
				<?php
					$Item->edit_link( array( // Link to backoffice for editing
							'before'    => '',
							'after'     => '',
						) );
				?>
			</small>
		</p>

*edit to add [php] tags


Form is loading...