Plotz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hatch] HackedGoto Design > Themes > hover Hatch > klick on Theme-Detais.
Current Version is 0.3.1
—
There is another security leak in Hatch.
It is possible to call attachement pages of unpublished posts or images, which will show the comment form, enabling spammers to submit comment spam from there.You may deactivate the comment form in attachement pages by adding this code to the functions.php of your Hatch child theme.
// deactivate comments in attachement pages
function filter_media_comment_status( $open, $post_id ) {
$post = get_post( $post_id );
if( $post->post_type == 'attachment' ) {
return false;
}
return $open;
}
add_filter( 'comments_open', 'filter_media_comment_status', 10 , 2 );
If you didn’t create a child theme so far, now it’s the time to create one.
Cheers
PlotzThis might (still) happen whenever you add personal (non-WP) folders to your WP root directory.
As soon as you remove those folders the “Create package set” button will appear.
Skol.
This might (still) happen whenever you add personal (non-WP) folders to your WP root directory.
As soon as you remove those folders the “Create package set” button will appear.
Skol.