danblee
Forum Replies Created
-
@rohit-savaj Hello, it doesn’t look like either option worked for me. I’m running WP Verison 5.8.1 and the plugin updated at the time of this message. Your first replacement did make the send return a success, and debugging (not very helpful) did say it was a success, however when checking the mail logs or my mail relay server I still never received the email.
Forum: Fixing WordPress
In reply to: How to use an IP Whitelist for a single page / allow login option?I run a hosting site and we automagically deny access to the the wp-login page when things get out of hand and they are Brute Forced. Maybe this will help. You need to put it in the root .htaccess file, not in the www or the public_html:
# The following lines have been put in place by your hosting provider as your site was under a brute force dictionary attack.
# You can provide yourself access to the wp-admin by adding an “Allow from” line with your IP address before the “Deny from all” line.
# If you need to allow multiple users in you can remove the following lines entirely if you need or you can add multiple “Allow from” lines.
#
# If you have any questions about this at all, do please get with your hosting provider for support.
#
<Files “wp-login.php”>
Order Allow,Deny
# Uncomment the following line and change the number to your IP address. You can find your IP address at https://www.whatismyip.php/
Allow from 123.456.789.012
Deny from all
</Files>
#
#
# End of brute-force block. If you do wish to remove the block entirely do not remove beyond this line.I’ll have to look at version two to see if it works. Thanks for the heads up.
Forum: Fixing WordPress
In reply to: Appearance > Menus suddenly missing.Okidoke, I’ll leave this here for reference, but if you activate a new theme and want to use the Menu options in the admin section, you’ll have to add this to functions.php file.
add_theme_support( 'menus' );
https://codex.www.ads-software.com/Function_Reference/wp_nav_menu
Forum: Fixing WordPress
In reply to: Appearance Menu is MissingThis is an old post put this happened to me as well. There is no “menu” Option at Appearance > Menu. Just installed a few days ago, no add-ons. Any ideas?
Forum: Fixing WordPress
In reply to: [Plugin: Contact Form 7] Submit redirecting to 404 PageThe same thing happened for me as well. Use [your-name] instead and you should be all set. Thanks guys!
So how do you guys generally get around this issue then? Even if I stay strictly in the HTML editor, because of the auto paragraph, I still can’t get my pre or code tags to come out right.
Any ideas?
Forum: Alpha/Beta/RC
In reply to: Parameters for wp_list_comments() in 2.7?Thanks for the update on this. I’m trying to get some information on wp_list_comments in 2.7 myself. I was hoping to find a very easy way to edit the text of the posters actual comment with some css but the class id for the comment post is something like 12 sentences long and pretty confusing for a theme editing newbie such as myself.