Posts: 2
Threads: 1
Joined: Jul 2012
thanks mate i managed to figure it out, just playing around with the layout now to see what is possible
thanks for your reply
Posts: 36
Threads: 13
Joined: Jul 2012
(17-Jul-2012, 08:49 PM)Steven Wrote: Hi,
Yes, it's possible. Someone asked the same question recently:
http://www.commentics.org/forum/showthread.php?tid=523
However, the solution (post #5) is for an older version of Commentics.
For Commentics v2.1, replace this:
PHP Code:
<?php
if ($cmtx_settings->sort_order_parts == "1,2") {
require_once $cmtx_path . "includes/template/comments.php"; //display comments
echo "<div class='cmtx_height_for_divider'></div>"; //display divider
require_once $cmtx_path . "includes/template/form.php"; //display form
} else {
require_once $cmtx_path . "includes/template/form.php"; //display form
echo "<div class='cmtx_height_for_divider'></div>"; //display divider
require_once $cmtx_path . "includes/template/comments.php"; //display comments
}
With:
PHP Code:
<?php
echo "<div style='float:left;width:40%;border-style:solid;border-width:1px;'>";
require_once $cmtx_path . "includes/template/form.php"; //display form
echo "</div>";
echo "<div style='float:left;width:59%;border-style:solid;border-width:1px;'>";
require_once $cmtx_path . "includes/template/comments.php"; //display comments
echo "</div>";
This option doesn't seem to be available in the latest version?
Is it still possible to have form and comments on different pages ?
Posts: 2,895
Threads: 59
Joined: Jun 2010
Hi,
This thread is about splitting the comments and the form to be side-by-side on the same page. I thinkĀ
this thread is what you're looking for.
Have
you completed
the interview?
Posts: 36
Threads: 13
Joined: Jul 2012
That should do it, I did not find that thread.
thank you Steven.