Forum Replies Created

Viewing 1 replies (of 1 total)
  • You can change order of the images by changing those lines (73-76):

    foreach( $slides as $slide ) {
    		$nivo_slides .= "<a href='".$link_urls[$i]."'><img src='{$slide}' alt='bmx' /></a>";
    		$i++;
    	}

    to that:

    foreach( $slides as $slide ) {
    		$tmp67 = "<a href='".$link_urls[$i]."'><img src='{$slide}' alt='bmx' /></a>".$nivo_slides;
    		$nivo_slides = $tmp67;
    		$i++;
    	}

    in function boom_build_nivo_slider() in file:
    wp-content/plugins/header-image-slider/general-template.php

Viewing 1 replies (of 1 total)