- United Kingdom
- Sold between 10 000 and 50 000 dollars
- Exclusive Author
- Most Wanted Bounty Winner
- Interviewed on the Envato Notes blog
- Referred between 10 and 49 users
- Bought between 10 and 49 items
- Microlancer Beta Tester
- Has been a member for 1-2 years
Hi guys, i am not here to slag off the reasons why i was soft rejected because to be honest the reviewer was 100% correct on the reasons.
The question i am asking is one of the reasons was that the comment form is not using the comment_form() function, instead going for my own customised version which still works with no errors.
The question is do i really need to do this.
I see there are alot of new, high profile themes on here which do not use this.
I know this because i have purchased a couple for a client a few weeks back.
I have corrected the other reasons which the reviewer stated, just wondered about this comment function.
If i use the comment function it means i will have to change the layout design of the comment form which i designed for the theme slightly to accommodate the default elements.
Thanks
- Microlancer Beta Tester
- Sold between 1 000 and 5 000 dollars
- Most Wanted Bounty Winner
- Bought between 10 and 49 items
- Exclusive Author
- Has been a member for 2-3 years
comment_form() is standard like wp_head(), wp_footer()
comment_form() can be customized in any possible way, I can’t see why you’d use your own function, there’s no point in reinventing the wheel
<?php
if( !function_exists('custom_comment_form_function') ) {
comment_form();
} else {
custom_comment_form_function();
}
?>
I guess, this way you shouldn’t have any problem getting accepted, cause core comment_form() function wont be removed.
I’ve done it myself, with custom pagination 
- Author had a File in an Envato Bundle
- Author was Featured
- Bought between 1 and 9 items
- Europe
- Exclusive Author
- Has been a member for 2-3 years
- Item was Featured
- Referred between 100 and 199 users
comment_form has a filter. use the filter to mod the html outputed 
- United Kingdom
- Sold between 10 000 and 50 000 dollars
- Exclusive Author
- Most Wanted Bounty Winner
- Interviewed on the Envato Notes blog
- Referred between 10 and 49 users
- Bought between 10 and 49 items
- Microlancer Beta Tester
- Has been a member for 1-2 years
duotive said
comment_form has a filter. use the filter to mod the html outputed![]()
Hi, i am using the filters, but there is a little something i wanted to use, i will just not use it.
Its not a huge thing, its just attention to detail 
