- This topic is empty.
-
AuthorPosts
-
April 23, 2013 at 2:55 pm #44323
jeldera
MemberWe are working on a WordPress project and we need to add two checkboxes to the comment section. So when someone comes to leave a comment they can choose one of the two boxes. We then need to sort this out somehow in the backend so the admin and see which checkbox was checked.
Here is the link so you can see it in context: [Link](http://174.121.64.229/~turnerfu/obituaries/glenn-e-strong/ “Link”)
Any help would be appreciated!
April 23, 2013 at 7:16 pm #132940deeve007
ParticipantTop of my head solution (without googling comments form customisation…) would be to replace the default comments form with a Gravity Form, that writes to a custom content type called “Comments”, and then in that form you could add whatever fields you wanted to. And then on the page below this form, just output the “comments” that have been approved.
That seems the easy way. As I said, not sure about full on WP comments form code customising.
April 23, 2013 at 9:08 pm #132951Alen
ParticipantIf you are using `` to generate your comment form. You could hook into `comment_form_default_fields` and add all the necessary fields. Like so:
function add_check_boxes_to_comment_form( $fields )
{
$fields = ‘‘;
return $fields;
}add_filter(‘comment_form_default_fields’,’add_check_boxes_to_comment_form’);
ETA: This goes to `functions.php` file.
April 23, 2013 at 10:10 pm #132954deeve007
ParticipantDoes Disqus have the ability to add custom fields?
I’m actually leaning towards using facebook commenting on most sites now, seems to get better spread on social media that way.April 23, 2013 at 10:12 pm #132955chrisburton
Participant@deev007 What about those not using Facebook?
April 23, 2013 at 10:17 pm #132956jeldera
MemberGood idea but the Facebook option will not work in our situation.
April 23, 2013 at 10:28 pm #132958Alen
ParticipantI absolutly hate when I see blogs implement both standard commenting and Facebook, and now with [Google+ commnenting](http://www.cloudhero.net/gplus-comments)… jeez!
I like to leave the standard comments and encourage my clients to engage their target audience on the actual platform (Facebook, Twitter, etc) because this engagement feels natural to people using them.
April 23, 2013 at 10:40 pm #132959jeldera
Member@AlenAbdula – your solution does not seem to be working for us. It seems logical but we must be missing something?
April 23, 2013 at 10:43 pm #132960deeve007
Participant@chrisburton – I’m seeing on many sites that users who comment have FB accounts. Doesn’t mean this suits every site, but for those where users have FB, and are already logged in, it breaks down the signup barrier completely. I’d love to do some A/B testing one day to find out exactly what difference it can make.
I myself hate having to sign up to make a comment.
April 23, 2013 at 10:46 pm #132961deeve007
ParticipantIn a perfect implementation (and haven’t yet had the client with the budget to look at this) your comments would exist on the site, but would also post to your FB page along with a link to the post, to get the best of both worlds. The sites I’ve used it on have certainly seen more cross promotion of their articles. You might hate it @AlenAbdula, but getting better cross-channel reach is the aim for most sites, and this is one way to achieve it.
April 23, 2013 at 10:48 pm #132962chrisburton
ParticipantOh no, I agree. I was just thinking that it seems limiting to restrict it to Facebook and not Twitter as well. One click signup (there’s usually two clicks involved) buttons are ideal, in my opinion. Much better than having to fill out a form.
April 23, 2013 at 11:06 pm #132963deeve007
ParticipantYou still have to click. Plus if they simply signup and comment, the comment simply resides on your site, yes? It doesn’t automatically create a post on their FB wall that their friends then see, is that right?
I think the choice of what type of commenting system to use isn’t a “one size fits all”. For some sites, comments that live within the site environment are the best fit, for others commenting may merely be a means to an end and FB comments would be better. For others something else again…
April 23, 2013 at 11:12 pm #132964chrisburton
ParticipantWhy not both, on the site and on the social network?
April 23, 2013 at 11:15 pm #132966deeve007
ParticipantIf it can be done easily, great! But haven’t seen anyplace where that happens, or a simple way to implement.
April 23, 2013 at 11:31 pm #132967jeldera
Member@AlenAbdula – do you know if you can use multiple checkboxes? When we have one it seems to work, but when we add two that’s where we have issues?
-
AuthorPosts
- The forum ‘Other’ is closed to new topics and replies.