Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author satrya

    (@satrya)

    You have to open the plugin file, but I wouldn’t recommend it. Because you will lost the modified file when you update the plugin.

    Open, includes/functions.php or you can try to open it via Plugins > Editor

    find this code.

    $html .= '<h3 class="rpwe-title"><a href="' . esc_url( get_permalink() ) . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'rpwe' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark">' . esc_attr( get_the_title() ) . '</a></h3>';

    Change it with

    $html .= '<h3 class="rpwe-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . esc_attr( get_the_title() ) . '</a></h3>';
    Thread Starter talk2ameya

    (@talk2ameya)

    Thank you! That fixed it.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Removing 'Permalink to' from post title hover’ is closed to new replies.