ThemeForest

Twicet Business & Portfolio - Wordpress - 5 in 1

How do I change the Logo?

This depends on the theme you use: if you are using theme 1-4 just replace the logo.png file in the appropriate image image folder via ftp. Another option would be to upload your logo and then change the path within style1-4.css in your css folder.

If

How can I link mainpage slider to another page/post/external image?

you need to be comfortable with using wordpress custom fields. you need to create a new custom field, maybe call it “new_link” and then enter the link into this custom field. then you need to edit the template files.

in index php search for $link = get_permalink();

add a new line afterwards:
$new_link = get_post_meta($post->ID, "new_link", true);

then search for get_permalink() arround line 47 and 52 and replace it with $new_link then search for $link at line 45 and replace it with $new_link as well

by
by
by
by
by