1 gurker Aug 05, 2006 11:42
3 gurker Aug 05, 2006 19:15
hi and thanks for your answer.
ive alredy tried it that way:
<a href="<?php $Item->get('url') ?>" title="<?php echo T_('Permanent link to full entry') ?>"><?php $Item->title( '', '', false ); ?></a>
but that doesnt work. it then links to the skin folder: skins/myskin.
any idea?
4 blueyed Aug 05, 2006 19:24
Use either "echo $Item->get('url')" or "$Item->disp('url', 'raw')" instead - "$Item->get('url')" just returns it and you have to add "echo" in front of it to display/output it.
5 gurker Aug 05, 2006 19:37
works fine. thanks a lot!
You can get the external URL through $Item->get('url') (as shown above).
Perhaps I've misunderstood your question.. :D