Poe
Poe

Reputation: 3010

Open source comment systems

I have a custom php cms managing multiple sites from one path with a wildcard configuration. I'd like to add a comment system for each unique domain+uri, and am interested in what's currently available before attempting something custom. Can you recommend any that you're aware of?

Upvotes: 1

Views: 2292

Answers (3)

vdf
vdf

Reputation: 11

Add following code to your functions.php file.

function custom_hook_after_logo() {
?> 
<div class="header-search-form">
<?php echo get_search_form( false ); ?>
</div>
<?php 
}
add_action( 'rtp_hook_after_logo', 'custom_hook_after_logo' );

and add following style to your style.css file

.header-search-form{ float : right; }

your requirement will be accomplished by this.

Upvotes: 1

Joey T
Joey T

Reputation: 764

Here's another one, Commentics http://www.commentics.org/

Upvotes: 0

Lelouch Lamperouge
Lelouch Lamperouge

Reputation: 8411

http://ratherodd.com/commentator/ might be useful. But Even this looks pretty good

Upvotes: 1

Related Questions