Daniel
Forum Replies Created
-
Forum: Reviews
In reply to: [Loginizer] Free Version — I saw no effect whatsoeverLoginizer works well for the purpose for which it is designed: to harden your WordPress admin console against unauthorized login attempts. It is not designed to stop comment spam, which is a different problem entirely.
What you need is a plugin that is specifically designed to protect against WordPress comment spam.
I found one that got 4.8 stars, give this a try:
Forum: Fixing WordPress
In reply to: How to delete “Comment” default text from inside the Comment field?Hi Samuel,
I tried pasting that into the end of my comments.php file and then tinkering with it, but I’m still not 100% sure what I need to do.
As a test, when I changed “Comment” to “Comment1”, my site still showed “Comment”, so it feels like I’m doing something wrong already.
Any ideas?
Here’s what the end of my comments.php file looks like (this is just an excerpt to give you some context):
comment_form( array( ‘fields’ => $fields, ‘label_submit’ => esc_attr__( ‘Submit’, ‘Divi’ ), ‘title_reply’ => ‘<span>’ . esc_attr__( ‘Leave a comment’, ‘Divi’ ) . ‘</span>’, ‘title_reply_to’ => esc_attr__( ‘Leave a Reply to %s’, ‘Divi’ ), ‘class_submit’ => ‘submit et_pb_button’, comment_notes_before
=>'<p class=”comment-notes”>’ . __( ” ) . ‘</p>’ ) ); ?>
<?php else: ?>add_filter( ‘comment_form_defaults’, ‘kill_comment_label’ );
function kill_comment_label( $defaults ) {
$defaults[‘comment_field’] = ‘<p class=”comment-form-comment”><label for=”comment”>’ . _x( ‘Comment1’, ‘noun’ ) . ‘</label> <textarea id=”comment” name=”comment” cols=”45″ rows=”8″ maxlength=”65525″ required=”required”></textarea></p>’,
return $defaults;
}
<?php endif; // if you delete this the sky will fall on your head ?>
</section>- This reply was modified 6 years, 1 month ago by Daniel.
Forum: Fixing WordPress
In reply to: Where to Change default post text?Fair enough. Thanks for the tip. I’m still learning the ropes here.
Forum: Fixing WordPress
In reply to: How to delete “Comment” default text from inside the Comment field?Hi Lisa,
So I actually asked Elegant Themes support for help with this issue yesterday but they weren’t very helpful.
“Thanks for letting me know. I am afraid we do not offer customization or full website services, sorry about that. You could try a freelancer site such as https://www.Upwork.com.
Also, that form is not the Comments Module of Divi and it is the default comment from WordPress. You may try checking this helpful guide that seems to be related to your case. https://crunchify.com/wordpress-comment-form-customization/
Hope that helps!”
The guy initially suggested I use some jQuery to “hide” it but the word “Comment” still appeared for a second, and then disappeared afterwards, when his script kicked in. I said that clearly wasn’t an elegant solution and I simply wanted to delete it outright, instead of “hiding” it, at which point he said he couldn’t help/it was outside his scope of support.
I’m a bit confused because they were able to help me to remove the default label from the other two fields in my contact form but not this one.