Site logo

Archived topic

Template Niche - Can`t find a Slider Option for Pictures?

7 replies · Started by infotbd on November 24, 2021

Viewing posts 1–8 of 8

Hello,

i`m not able to find any slider Options? I want to build a header on a site with 4-5 pictures which are sliding/changing after some seconds.

Best

Hi there,

you would need a plugin like MetaSlider, Soliloquy or Smart Slider to do that.

Oh okay. Which is a lightweight from them?

No sliders are particularly lightweight but the first two I listed are probably the lightest of them all.

Is there something like a static picture but it will be random displayed from 5 different pictures? So if i revisit or refresh i see another picture?

I ask just to keep the lightweight ^^

You could use a Hook Element:

https://docs.generatepress.com/article/hooks-element-overview/

Add this to the Hooks content:

<?php
$headers = array(
	'http://yourwebsite.com/URL/TO/header1.jpg',
	'http://yourwebsite.com/URL/TO/header2.jpg',
	'http://yourwebsite.com/URL/TO/header3.jpg',
	'http://yourwebsite.com/URL/TO/header4.jpg',
);

$random = $headers[ rand( 0, count( $headers ) -1 ) ];
echo '<img src="' . $random . '" alt="your_alt_tag" width="1200" height="800">';
?>

Set the Hook to where you want it displayed eg. generate_after_header

Check Execute PHP
And set its Display Rules for the page you want it displayed on.

You will need to add your own URLs to the code and update the width="1200" height="800" attributes to match your images.

How cool is this ! Thank you!!!

Glad to be of help

This archived topic is closed to new replies.