Big problem for me,
some of my visitor came from google, they're visiting wap version,
and
all link isn't clickable, eg:download
how to make the link clickable in wap mode?
Open up your 'Themes/default/wireless.template.php' file.
Replace this code:
// This is a special modification to the post so it will work on phones:
$wireless_message = strip_tags(str_replace(array('<div class="quote">', '<div class="code">', '</div>'), array('', '', '<br />--<br />'), $message['body']), '<br>');
With this code:
// This is a special modification to the post so it will work on phones:
$wireless_message = strip_tags(str_replace(array('<div class="quote">', '<div class="code">', '</div>'), array('', '', '<br />--<br />'), $message['body']), '<br><a>');
THANNKXSS :)
Thank you for this! It works perfectly. I had to replace 3 different sections of that text though.
Thanks for this post!