Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Try the Numbar
    Check in Photo Albums -> Settings admin page Table II item 23 and Save Changes

    Thread Starter knappen

    (@knappen)

    Thank youu for posting! However, there are so many slides in this album that I am looking for a box where you can type a slide number and jump to it. Is there a way to do this?

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    No. I could enhance the numberbar so that it displays only, say 20 boxes and a << for previous 20 and >> for next 20, would that be a solution to you?

    Thread Starter knappen

    (@knappen)

    This wouldn’t work for my purpose but it would make things easier. I have a catalog of over a hundred pages. I’ve made them all pages into high res jpegs and numbered them so they can be viewed sequentially. Ideally I would like to be able to “jump pages” and go directly to the “page” I am after.

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    I will think about it and put it on the wishlist

    Thread Starter knappen

    (@knappen)

    Thanks!

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    I have the following solution for you:

    1. Check the box in Table II item 21: Show Custom box.

    2. Put the following code in item 22 textbox:

    <div style="text-align:center;" >
    	Enter photo number:
    	<input style="width:50px; margin:0 4px;" onchange="wppaDirectAccessSlide(this)" />
    	and click anywhere outside the editbox
    </div>
    <script type="text/javascript">
    /* <![CDATA[ */
    function wppaDirectAccessSlide(elem) {
    	if ( _wppaSlideShowRuns[1] ) {
    		wppaStartStop(1, 0)
    	}
    	var slideRequested = elem.value;
    	var index = parseInt(slideRequested) - 1;
    	var count = _wppaSlides[1].length;
    	var warTxt = 'Please enter a valid photo number';
    	if (index >= 0) {
    		if (index < count) {
    			wppaGoto(1, index);
    		}
    		else {
    			alert(warTxt);
    		}
    	}
    	else {
    		alert(warTxt);
    	}
    }
    /* ]]> */
    </script>

    Try it (and change it if you like)

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘[Plugin: WP Photo Album Plus] Jump to a Slide Number? Slide Number Search?’ is closed to new replies.