-
1. Re: Using a second blog for a testimonials page
madasafish77 Aug 6, 2014 7:33 AM (in response to gwhPoster)Hi,
I've implemented this and a little video gallery as well using the blogs. Just make sure you are referencing the correct template file and that it's extension is .tpl and not html. You can see a live example here. Testimonials
Here is a copy of the code I used with pagination as well. You will need this to get the pagination working.
<script>
/* when document is ready */
$(function() {
/* initiate plugin */
$("div.holder").jPages({
containerID: "itemContainer",
perPage: 4
});
});
</script>
HTML
<div class="holder">
</div>
<ul id="itemContainer">
{module_blogpostlist,12460,100 template="/ModuleTemplates/WebApps/Testimonials/testimonials-test.tpl"}
</ul>
<hr />
<div class="holder">
Hope this helps
-
2. Re: Using a second blog for a testimonials page
gwhPoster Aug 6, 2014 6:46 PM (in response to madasafish77)Thanks so much for that code. That's exactly what I need and the paging works great. Also the path to the .tpl file was spelt incorrectly which is why it wasn't reflecting correctly.
Thanks again - I really appreciate it.
