When you hover over the link titles you get "Permanent Link: 'Link name'". Is there any way to remove that "Permanent Link" from the title? In Angular theme.
rgds,
larkje
When you hover over the link titles you get "Permanent Link: 'Link name'". Is there any way to remove that "Permanent Link" from the title? In Angular theme.
rgds,
larkje
Yes - open up all includes/format-xxx.php files, loop-search.php and loop-archive.php and replace:
<a href="<?php echo get_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link:','avia_framework')?> <?php the_title(); ?>"><?php the_title(); ?></a>
with:
<a href="<?php echo get_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>Thanks. Since I'm using a local translated version, I just transelated the "Permanent Link" to <space>. It was less timespendig...
larkej
This topic has been closed to new replies.