Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Read More [...] issue WordPress

  • SOLVED

Hi Guys

The read more symbol [....] is looking like this [&hellip in Safari and Firefox but looks ok in Chrome

http://howtobeassertive.com/blog

I've done various troubleshooting steps but am now a bit confused. I've shot a 30 second video to explain my issue further.

http://screencast.com/t/yv3AGVKS

Any help is greatly appreciated

Thanks
Steve

Answers (3)

2013-08-05

Sabby Sam answers:

It is pretty simple.
Open your blog template and check where the data is coming from.
If it is coming from any function then it must be having some code.

Or provide us the code here.
Thanks


Steve Watson comments:

Hello Sabby

I have uploaded a fresh copy of the Catalyst theme framework and that is fixed my issue.

It was the latest Catalyst upgrade that broke it so I have rolled it back to a previous version.

Thanks
Steve


Sabby Sam comments:

Its my pleasure.
Thanks

2013-08-05

Hariprasad Vijayan answers:

Are you using wordpress more tag(<!--more-->) or some other function to limit content?


Hariprasad Vijayan comments:

If you are using more tag, try the following method

<?php the_content('[...]<br /><br />Read More &raquo;'); ?>

2013-08-05

EricssonDesign answers:

What happens if you put your code you were using in the normal functions.php?

function trim_excerpt($text) {
return rtrim($text,'[...]');
}
add_filter('get_the_excerpt', 'trim_excerpt');


Just put it at the very bottom of functions.php