• Resolved pare81

    (@pare81)


    hi greg,

    is it pissible to have an normal gallery instead of an slider on single.php. is there an rady snippet ir option or do i have to do this by myself?

    thanks and regards
    pare

    • This topic was modified 7 years, 11 months ago by pare81.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    The default slider you can disable by adding this code to your theme functions.php file

    
    add_action( "init", "change_slider_to_gallery", 1000 );
    function change_slider_to_gallery() {
        remove_action('adverts_tpl_single_top', 'adverts_single_rslides');
        add_action('adverts_tpl_single_top', 'my_slider');
    }
    
    function my_slider( $post_id ) {
        // your gallery code goes here
        // for the best results check how gallery images are being loaded
        // in default slider adverts_single_rslides() function which you
        // can find in wpadverts/includes/functions.php file 
    }
    
    Thread Starter pare81

    (@pare81)

    Thanks Greg

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Gallery instead of slider’ is closed to new replies.