Hey, firstly, Modx & EvoGallery are a joy to use and my clients love the simplicity of editing via the front-end - So thank you!
However... I'm a bit stuck (2 days stuck, and this forum/many others searched).
I have a dev site at
http://qubedesign.com/2012/at-bristol.php and EvoGallery is up and running (love the uploadify/management area), but...
1. I can't get the pagination to output links (image numbers or Previous/Next (< & > in this example), or to display the fact that there should be four images in the [+pages+] - it rotates 4 images but just says '1' for each.
2. How do I get the [+keywords+] to output links like Ditto tags so pages can be grouped/searched?
My page template runs as follows:
Chunk - {{EGgallery}}
[!EvoGallery? &docId=`[*id*]` &display=`images` &type=`jquery-cycle` &tpl=`EGtpl` &itemTpl=`EGitemTpl` &sortBy=`sortorder` &paginate=`1` &paginateAlwaysShowLinks=`1` &paginatePreviousText=`<` &paginateNextText=`>` &tplPaginatePrevious=`tplPaginatePrevious` &tplPaginateNext=`tplPaginateNext` !]
To Chunk - {{EGtpl}}
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery('#myGallery').cycle({
timeout: 5000
});
});
</script>
<div id="myGallery">
[+items+]
</div>
To Chunk - {{EGitemTpl}}
<div class="imageElement">
<div id="galleryPortfolioImages">
<img src="[+images_dir+][+filename+]" alt="[+title+]" />
[+previous+][+pages+][+next+]
</div><!-- end galleryPortfolioImages -->
<div id="galleryTextColumn"><h1>[+title+]</h1>
<p>[+description+]</p>
<p>[+keywords+]</p>
</div><!-- end galleryTextColumn -->
<div id="galleryLatestColumn">
<p>[+pages+]</p>
</div><!-- end galleryLatestColumn -->
</div><!-- end imageElement -->
I hope that is enough info, I've been going round in circles for days so a fresh/more skillful perspective would be greatly appreciated! Thanks in advance.
[ed. note: joemordle last edited this post 14 years, 6 months ago.]