Remove wording "Permalink to" from Title

Hi,

my Recent Post shows the following Title Tooltip on hover:
Permalink to: “Barbados - Swim with Turtles”

I have found the corresponding code for the recents posts title in my functions.php:

 $output .= '<a class="x-recent-post' . $count . ' ' . $image_output_class . '" href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( csi18n('shortcodes.recent-posts-permalink'), the_title_attribute( array( 'echo' => false, 'post' => $post->ID ) ) ) ) . '">'

How can I remove the wording “Permalink to:” from the Title?

Michael

Hello Michael,

Thanks for writing in!

Please have your code updated and use this:

$output .= '<a class="x-recent-post' . $count . ' ' . $image_output_class . '" href="' . get_permalink( $post->ID ) . '">'

This should remove the title attribute in your recent posts links.

Kindly let us know how it goes.

I don´t like to remove the complete title :wink:

I just like to remove the wording Permalink to: and the Quotation marks. Where can I change this? Is it part of a file under the framework folder in X?

Hello Michael,

Please revert the changes back to the original code:

$output .= '<a class="x-recent-post' . $count . ' ' . $image_output_class . '" href="' . get_permalink( $post->ID ) . '">'

In a separate block, you can add this new function code in your child theme’s function.php file:

add_filter('gettext', 'remove_permalinkto' );
function remove_permalinkto($translated) { 
  $translated = str_ireplace('Permalink to: "%s"', '%s', $translated);
  return $translated; 
}

This function code will override the display of Permalink to: "{title}" into just {title} when you hover the post item title.

Hope this helps.

Yes, this works. Thank you. :slight_smile:

Is it the only way to replace it by adding a filter? Where is the text “Permalink to” stored in the files of X?

Hello Michael,

You are most welcome. The keyword is not present in X theme files. It is somewhere in Cornerstone plugin files which serves as the default keywords for the elements.

Best Regards.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.