Website Comments - Multiple Posts on list page

By hk - December 4, 2012

Hi,
I just installed the Website Membership plugin 1.01.
I want to show on a blog listing page a post form and all comments wich each blog posting:
http://gultendye.com/blog1.php

Event the code is within the blog foreach loop. The comments and post form shows only in the first blog posting.

Is there a way to accomplish this?

By Jason - December 21, 2012

Hi,

Could you attach blog1.php to this thread so we can see the code you are currently using?

Thanks,

---------------------------------------------------
Jason Sauchuk - Project Manager
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/

By Jason - December 21, 2012

Hi Helmut,

Thanks for your reply.  We've looked into this problem a little closer and it looks like a bug inside the comments plugin.  Here's a patch to get it working:

  1. Open up websiteComments.php
  2. On or around line 88 you should see this code: require_once("$themeDir/$themeName.php");
  3. Change require_once to require like this: require("$themeDir/$themeName.php");

That should resolve this issue for you.

Hope this helps.

---------------------------------------------------
Jason Sauchuk - Project Manager
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/

By hk - December 21, 2012

Jason,

This works - Thank you

Helmut