1 jonasb Aug 16, 2010 09:45
3 jonasb Aug 16, 2010 13:26
Thanks!
Where do I hack code? (I will remember the hack, when upgrade)
4 lturner 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
5 jonasb Aug 16, 2010 23:47
Thanks, it work! :D
6 lturner Aug 17, 2010 06:12
No worries
L
Doesn't look like there is a way to configure that without hacking code.
L