When I use this code [!MaxiGallery? &pics_per_page=`1 !] I get a full picture pagination, e.g. 1 | 2 | 3 | ..... etc.
but when I use this code [!MaxiGallery? &display=`pictureview` &pics_per_page=`1` !] I only get the « previous | index | next »
is it possible to get the full picture pagination using pictureview??
You can do [!MaxiGallery? &pics_per_page=`1 !] and then create a custom galleryPictureTpl that shows the normal image instead of thumbnail. See wiki for information about galleryPictureTpl and check the default template to see what you need to modify.
"He can have a lollipop any time he wants to. That's what it means to be a programmer."
Well, I can see this is out of my league - better wait until I have more experience...
Thought at first that it would be as simple as changing <a href="[+maxigallery.index_url+]">[+maxigallery.strings.index+]</a> in picturetpl.html to [+maxigallery.pagenumbers+] - but that didn’t do the job...
Then I tried to copy the code from pagenumbertpl.html and put this in the place of <a href="[+maxigallery.index_url+]">[+maxigallery.strings.index+]</a> - but didn’t work either...
I think I better stay with the standard-template for now...
You need to edit the gallerypicturetpl.. not picturetpl or any other..
And then when you see the <img> tags there, change take the prefix "tn_" off from the filename placeholder.
You also migth want to take out the links if there are no zoomable version of the image, or change the link to point to the big images ("big_" prefix to the filename) if you are using &keep_big_img parameter.
"He can have a lollipop any time he wants to. That's what it means to be a programmer."