Recent Topics

1 Aug 16, 2010 09:45    

My b2evolution Version: 3.3.3

When I use, Universal Item list, and truncat the post/page after, 10 words, you get "..." as a "Read more"-link.

I would like to have the text "Read more" instead of "..."

2 Aug 16, 2010 11:09

Doesn't look like there is a way to configure that without hacking code.

L

3 Aug 16, 2010 13:26

Thanks!
Where do I hack code? (I will remember the hack, when upgrade)

4 Aug 16, 2010 14:12

Head over to:

/inc/widgets/widgets/_col_item_list.widget.php

Somewhere towards the end about line 373 you will see this:

$content = strmaxwords( $content, $words, array(
						'continued_link' => $Item->get_permanent_url(),
						'continued_text' => '…',
					 ) );

You need to change that to this:

$content = strmaxwords( $content, $words, array(
						'continued_link' => $Item->get_permanent_url(),
						'continued_text' => 'Read More',
					 ) );

Hope that helps
Lee


Form is loading...