Wasca
Forum Replies Created
-
Hi
Yes I’m still having this issue in WP 4.3.1 and version 3.1.4 of Login With Ajax.
I’ve currently got this value in my functions.php to suppress the messages from being sent out.
add_filter(‘send_password_change_email’, ‘__return_false’);
Any idea on how we can fix this?
Thanks
Forum: Fixing WordPress
In reply to: WP Update Triggered Password Email For All UsersHi Guys
I’m seeing the same issue on one of my sites but we dont use the DAP plugin.
Is there any more information we can get on what is causing the issue?
Thanks
Forum: Networking WordPress
In reply to: Admin very slow and cutting connection after 4.2.4 updateJonnylons
Check to see if any other plugins are trying to access this domain https://wp-compatibility.com/
That’s the domain that “Installer” was trying to get to but it seems it’s offline.
Forum: Networking WordPress
In reply to: Admin very slow and cutting connection after 4.2.4 updateHi Guys
Not sure if it’s related but I also had a major slow down in the admin area after updating to 4.2.4. The problem ended up being a plugin called “Installer” and cot being able to get to https://wp-compatibility.com/
Once I turned that off I was all good.
Hope this helps someone else.
Thanks for the update Mikko that what was causing the issue.
Thanks for posting up about this, I had the same problem. After disabling shortcode expansion I could get the plugin to fully index the site.
Is this something that will be fixed in the plugin? I’ve also got the Woocommerce plugin installed.
Forum: Themes and Templates
In reply to: [Highwind] Exceprt vs Full ContentI needed to do this also.
I created a child theme and edited the content.php file.
I changed the section of the file to look like this.
<section class="article-content"> <?php highwind_content_entry_top(); //Load excerpt if a post has one else show content. if (empty($post->post_excerpt)) { the_content( __( 'Continue Reading...', 'highwind' ) ); } else { if ( is_single() ) { //Displaying Single Post page the_content( __( 'Continue Reading...', 'highwind' ) ); } else { the_excerpt(); } } wp_link_pages(); highwind_content_entry_bottom(); ?> </section><!-- /.article-content -->
I found these error messages, they live in /wp-includes/user.php
Now I just need to find a way of changing them without touching the source WP code.
Any clues anyone?
I can vouch that this does fix the problem, thanks for posting.
Just wondering when we can expect a fix for this. Thanks for a great plugin.
Forum: Fixing WordPress
In reply to: wp-cron.php on a Secure DomainAfter a little more looking into this it looks like the server that I was running https://mysite.com on (which was just a development server) was trying to hit the real server where https://mysite.com resides.
There was another 404 program on that server that was notifying me of the wrong information.
To fix this on the development server all i did was add the following to my /etc/hosts file
192.168.0.10 mysite.com
That way the development server would try to connect locally instead of resolving out to the real server where wp-cron.php does not exist.
What is the name of the plugin you used to change the standard messages?
Forum: Fixing WordPress
In reply to: Remove "Home" From Custom MenuOk I figured this one out on my own, here is the resulting code, hope it helps someone else.
// Add home link to menus function new_nav_menu_items($items, $args) { if( $args->theme_location == 'main-nav' ){ //Only if the the main-nav area (not sidebar menu widgets) $homelink = '<li class="home"><a href="' . home_url( '/' ) . '">' . __('Home') . '</a></li>'; $items = $homelink . $items; } else { return $items; } return $items; } add_filter( 'wp_nav_menu_items', 'new_nav_menu_items', 10, 2 ); add_filter( 'wp_list_pages', 'new_nav_menu_items' );
Forum: Fixing WordPress
In reply to: Login/Logout in Menuok I was able to get it to just display on my second menu by doing this
add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2); function add_login_logout_link($items, $args) { ob_start(); wp_loginout('index.php'); $loginoutlink = ob_get_contents(); ob_end_clean(); if( $args->theme_location == 'secondary-menu' ){ $items .= '<li>'. $loginoutlink .'</li>'; } return $items; }
Now how do I position it in the menu?
Forum: Plugins
In reply to: [WP Compare Tables] [Plugin: WP Compare Tables] Admin Pages not loadingOk I found my problem.
I have the “WordPress Firewall 2” plugin installed and for some reason it was doing the 404.
I whitelisted the ip address from where I was trying to admin from and all is now ok.
Forum: Plugins
In reply to: [WP Compare Tables] [Plugin: WP Compare Tables] Admin Pages not loadingI tried deactivating the “LessThanWeb Testimonials” plugin and now I get this in my apache logs
GET /wp-admin/admin.php?page=wp_compare_tables HTTP/1.1″ 302 305 “https://www.mysite.com/wp-admin/plugins.php?deactivate=true&plugin_status=all&paged=1&s=” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:6.0.2) Gecko/20100101 Firefox/6.0.2”
Why would it think that my compare tables plugin was deactivated?