• Hi, is it possible to remove the link to the post used in the featured image slider? I don’t want the users to click on the image itself and be redirected to any other page.

    Thank you so much!

Viewing 1 replies (of 1 total)
  • Hello ccv1,

    The file responsible for the featured post slider can be located at: /inc/catchevolution-functions.php. at line 641:

    <a href="'.get_permalink().'" title="'.sprintf( esc_attr__( 'Permalink to %s', 'catchevolution' ), the_title_attribute( 'echo=0' ) ).'" rel="bookmark">

    Remove the href=”‘.get_permalink().'” like this:

    <a title="'.sprintf( esc_attr__( 'Permalink to %s', 'catchevolution' ), the_title_attribute( 'echo=0' ) ).'" rel="bookmark">

    Hope it helps! ??

    Note: I suggest you did this with Child theme to keep your custom code even the theme updates: https://codex.www.ads-software.com/Child_Themes

    Best Regards,
    Calvin

Viewing 1 replies (of 1 total)
  • The topic ‘Remove link to post on image slider’ is closed to new replies.