Recent Topics

1 Oct 19, 2008 19:35    

My b2evolution Version: 2.x

Unusual post for me :D

1 - pingbacks - are these enabled by default ? where can I turn these on and off

2 - Next/Previous ... on the bottom of the blog these are displayed - anyone know where I can change this wording?

3 - admin panel - views. when you go to the dashboard and view posts you get a display on how many times each post was viewed ... what exactly qualifies a view? Oddly I have posts right next to each other and one has 260 views ... the next has 2 ....

as always thanks,
Rob

2 Oct 21, 2008 14:14

1) Global settings -> plugins
2)

$MainList->page_links( array(
     'block_start' => ' ',
     'block_end' => ' ',
     'block_single' => '',
     'links_format' => '$prev$',
     'prev_text' => '#',
  ) );
 
  $MainList->page_links( array(
     'block_start' => ' ',
     'block_end' => ' ',
     'block_single' => '',
     'links_format' => '$next$',
     'prev_text' => '#',
  ) );


or

<?php
	// -------------------- PREV/NEXT PAGE LINKS (POST LIST MODE) --------------------
	mainlist_page_links( array(
			'block_start' 		=> '<div class="navigation">',
			'block_end' 		=> '</div>',
   			'prev_text' 		=> '&lt;&lt;',
   			'next_text' 		=> '&gt;&gt;',
		) );
	// ------------------------- END OF PREV/NEXT PAGE LINKS -------------------------
?>


3) These views are not accurate. I believe when a page is viewed the most recent post gets a hit. What surely gets a hit is viewing the post in single page mode.

Good luck

3 Oct 22, 2008 01:36

Thanks - I didn't think those views were spot on -

Everything else worked as advertised - cheers!


Form is loading...