How can I remove the first 10 characters from displaying for entries in channel tags?
I have the following:
{exp:channel:entries channel="twitter" limit="5" orderby="date" sort="desc" status="open" dynamic="no" }
{tweet}
{/exp:channel:entries}This displays tweets that ive imported to a channel. The problem is that twitter adds ‘MyUsername: ’ to beginning of every tweet and there’s no way I know of to stop this happening with the twitter API.
So I have something like:
MyCompnay: This is my first tweet!But what I need is:
This is my first tweet!Thanks