jrCore_format_string :: issues
Jamroom Developers
yep the issue is probably truncate. Truncate just cuts the string off at 170 characters no matter what.
<a href="https://www.jamroom.net/the-jamroom-network/forum/new_posts/41144/jrcore-format-string-issues">The link to this page</a>If you're thinking that the 170 characters is just the text inside the href, better think again, its everything. So cutting it off is always a bad idea in my mind.
As for the jrCore_format_string issue
Docs: "{jrCore_format_string}"
https://www.jamroom.net/the-jamroom-network/documentation/development/1437/jrcore-format-string
The jrCore_format_string is just one of the piped converters you are applying to the variable
{$some_var|first_converter|second_converter|third_converter}
They run in order, so if the first_converter turns all @tags into html links, then the second_converter strips all html, then the second one is stripping the work the first one did.
Try truncate as the first converter then run all your stuff after that.
