• Hello!As I mentioned in the title,Meta slider is not showing in every page.It only works in Home page.But like gallery page,news,it is not showing…

Viewing 1 replies (of 1 total)
  • Theme Author nobita

    (@nobita)

    Hi edzuss99

    Raindrops theme, slider only display on the home page

    but

    if you can write a PHP, you can replace the header image of favorite pages to the slider

    hook example.

    Add functions.php

    example to display the specified slider where the archive page,

    <?php
    add_filter('raindrops_header_image_elements','my_custom_slider');
    add_filter('raindrops_header_image_home_url','my_custom_slider');
    
    function my_custom_slider( $header_image ) {
    	if( is_archive() ) {
    
    		return do_shortcode('[metaslider id=26387]');
    	}
    	return $header_image;
    }
    ?>

    If you do not understand PHP, it can cause a serious error and simply paste ??

    Thank you.

Viewing 1 replies (of 1 total)
  • The topic ‘Meta Slider is not showing in every page’ is closed to new replies.