how to change a link to just text

Hi! I have a link on my website that I don’t want to be a link anymore, but I don’t know anything about php and I’m afraid to mess with it… Here’s what it looks like:

<?php the_title2('', '..', true, '75'); ?>

Published on <?php the_time('l, F jS, Y') ?> | <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>
<?php if (function_exists('the_content_limit')) { the_content_limit(550, ""); } else { echo 'You have not uploaded and acivated the limit posts plugin. This is required.'; } ?>

Website is www.shannon-rae.com. It’s a part of the image slider in the middle. problem is, I’ve only been getting spam comments, and I’d rather just not have a link to a comment page at all.

Thanks so much for any help!!! ;D

hello,

this part is the link:
[php]<?php the_title2('', '..', true, '75'); ?>[/php]

you should be ok to remove it. :wink:

sorry i just noticed you wanted to change it to plain text.

change:
[php]<?php the_title2('', '..', true, '75'); ?>[/php]

to:
[php]<?php the_title2('', '..', true, '75'); ?>[/php]

:wink:

Sponsor our Newsletter | Privacy Policy | Terms of Service