Buongiorno a tutti, sono nuovo del forum e del mondo joomla...ho creato un sito tipo social network, dove gli utenti hanno la possibilità di scrivere post, inserire immagini e video, come da titolo vorrei far in modo che quando un utente inserisce un link web appaia non solo come link cliccabile, ma tipo facebook cioè con un'immagine di anteprima.
Nel file php del plugin ho questa stringa :
$txt_post=str_replace("
", "<a target='_blank' href='",$txt_post);
$txt_post=str_replace("", "'>" ,$txt_post);
$txt_post=str_replace("[NAME_URL]", "" ,$txt_post);
$txt_post=str_replace("[/NAME_URL]", "[/url]" ,$txt_post);
cosa devo aggiungere?