Remove slider link from Dazzling WordPress theme

Hi
I would like to remove the link on the slider. I would like only to display the title but not to link to its page.
Thank you
Miriam

Miriam,

Look up file called extras.php that you can find in theme folder - inc.
In that file you should look for function called dazzling_featured_slider and then remove these two lines from this function:

echo '<a href="'. get_permalink() .'">';

echo '</a>';

Now link will no longer work but title and excerpt will be still there.

Thank you! Done!