Hello,
I will appreciate any help about two problems that was mentioned in our Soft-reject reasons. We are a bit confuses what we need to do.
1. Please use a unique prefix for all function names, custom images sizes, classes, hooks, public/global variables, and database entries to avoid conflict issues with plugins and other themes.
example: http://envato.d.pr/1b1S4/AfPRPo04 - http://envato.d.pr/173h0/1cNaWdGM
If we look at the examples ThemeForest gave us, we can see that they want us to prefix the functions inside Widgets. widget(), update() and form() —> We cannot prefix these functions since they are used by WordPress to initialize the widgets. What can we do here ?
2. Page comments are not enabled.
We have an option to hide comments on pages and posts, but by default they are visible. Page comments can also be disabled as native WordPress setting. What does this error mean, since we are not changing any WordPress behavior and we are not changing it?
Code we use for page comments:
<?php
if ( 1 != adriana_setting( 'page-comments-block' ) ) {
?>
<?php
// If comments are open, load up the comment template.
if ( comments_open() ) :
echo comments_template( );
endif;
?>
<?php
}
?>
Thank you in advance for your help.