So I just installed Minimatica and like everyone else here has wanted to use pages instead of posts for my homepage.
Well, since no one had an answer I ended up figuring out a method for myself!
It’s ugly but it works. You need to go into Appearance –> Editor –> loop-slider.php
Once you’re in here, it’s pretty easy to follow actually. Just start with where it shows an “<li class=”slide”>” tag. Each one will be a slide and all you have to do is manually hardcode in your pages. So start with a page in mind, grab that link and put where “<?php the_permalink(); ?>” is. It’s really pretty easy, you just need to pull out the dynamic parts and hardcode your page links in.
You will definitely need to know some html to do it but at least this points you to where to start.
Good luck!
Edit: Oh and to be clear, “<?php the_permalink(); ?>” would be “/your-page-slug/” instead. This only swaps out the link. To switch the image, locate “background:url(<?php echo $thumbnail[0]; ?>)” and put in the link to your image (600×400). So “background:url(<?php echo $thumbnail[0]; ?>)” would equal “background:url(‘/images/your-image.png’)”
The rest you should be able to figure out. If not, well, keep trying! It will make you a better coder ??