Zee
Forum Replies Created
-
I just confirmed it is happening to all post where the description field is not filled out in Yoast SEO.
I am currently using Yoast, do you think that might be where the problem lies?
Forum: Plugins
In reply to: [Really Simple Share] Pinit button not showing in IE11I found one post that will not display the pinterest button in IE. Initially it shows up and then disappears and there is no pinit hover button on the pictures. I have tried all configurations on the pinterest button and it does not change. I am wondering if it has something to do with the amount of pictures or length of the post.
https://www.godairyfree.org/news/dairy-free-valentine-chocolate
Thanks!
Forum: Plugins
In reply to: [Really Simple Share] Post to Facebook not workingIf I use iFrame it causes a big gap below the buttons so that is not an option. The send button causes the same problem by adding another button and crowding out the other buttons.
Forum: Plugins
In reply to: [Really Simple Share] Pinit button not showing in IE11I changed the “Pinterest button options” from yes to no and back again and it is working properly now. Strange.
Forum: Plugins
In reply to: [Yoast SEO] Does it work correctly with WordPress 3.7 ?I am guessing it is checking a theme for the meta description tag and probably does not create any issues but throwing that error code.
Forum: Plugins
In reply to: [Yoast SEO] Does it work correctly with WordPress 3.7 ?It would be this function:
Specifically line 259 is “function wpseo_upgrader_process_complete( $upgrader_object, $context_array, $themes ) {
$options = get_option( ‘wpseo’ );”/** * Check if the current theme was updated and if so, test the updated theme * for the meta description tag * * @since 1.4.14 * * @return void */ function wpseo_upgrader_process_complete( $upgrader_object, $context_array, $themes ) { $options = get_option( 'wpseo' ); // Break if admin_notice already in place if ( isset( $options['meta_description_warning'] ) && true === $options['meta_description_warning'] ) { return; } // Break if this is not a theme update, not interested in installs as after_switch_theme would still be called if ( $context_array['type'] !== 'theme' || $context_array['action'] !== 'update' ) { return; } $theme = get_stylesheet(); if ( ( isset( $context_array['bulk'] ) && $context_array['bulk'] === true ) && ( is_array( $themes ) && count( $themes ) > 0 ) ) { if ( in_array( $theme, $themes ) ) { wpseo_description_test(); } } else if ( $themes === $theme ) { wpseo_description_test(); } return; }
Forum: Plugins
In reply to: [Really Simple Share] W3C validation – Whitespace in query componentI replaced Line 406
$appended_url = ‘?url=’.rawurlencode($link).’&media=’.rawurlencode($media).’&description=’.strip_tags($title);with
$appended_url = ‘?url=’.rawurlencode($link).’&media=’.rawurlencode($media).’&description=’.rawurlencode($title);It seems to be working for me without the errors now
Forum: Plugins
In reply to: [Really Simple Share] FB.getLoginStatus() called before calling FB.init()Not quite fixed
js.src = “//connect.facebook.net/’.$really_simple_share_option[‘locale’].’/all.js#xfbml=1(ampersand A M P ;)status=0′.$app_id.'”;
Needs to be
js.src = “//connect.facebook.net/’.$really_simple_share_option[‘locale’].’/all.js#xfbml=1&status=0′.$app_id.'”;
Same problem here with Godaddy as the host. I get a 404 on /wp-admin/admin-ajax.php
Forum: Plugins
In reply to: [Redirection] Missing argument 2 for wpdb::prepare()Here is the fix
https://gist.github.com/theandystratton/4565222On line 70 of redirection/models/group.php
Remove the “( $wpdb->prepare” and ” )” at the endForum: Plugins
In reply to: [Redirection] Missing argument 2 for wpdb::prepare()Same problem here. This error should not be hard to fix but I am traveling right now.
Line 70:
$rows = $wpdb->get_results( $wpdb->prepare( "SELECT {$wpdb->prefix}redirection_modules.name AS module_name,{$wpdb->prefix}redirection_groups.name AS group_name,{$wpdb->prefix}redirection_groups.id FROM {$wpdb->prefix}redirection_groups INNER JOIN {$wpdb->prefix}redirection_modules ON {$wpdb->prefix}redirection_modules.id={$wpdb->prefix}redirection_groups.module_id ORDER BY {$wpdb->prefix}redirection_modules.name,{$wpdb->prefix}redirection_groups.position" ) );
Also there seems to be a bad link with the URL at the top of the page “Redirections for group: Redirections”
/wp-admin/redirection?page=redirection.php&sub=groups&id=1
/wp-admin/tools.php?page=redirection.php&sub=groups&id=1I also noticed there has not been any development since 2012. Does anyone recommend an updated plugin or want to start the development back up for this one?
Forum: Plugins
In reply to: [Broken Link Checker] Broken link checker making site too slowSame issue here it seems after the update from 1.8 to 1.8.2. I had to disable it after I was constantly getting loads above 100
Forum: Plugins
In reply to: [Link Fixer] After clearing 404 errors site goes down due to loopJust checked the paths and they are now correct! The only issue left is the duplicate string. There must have been a problem with the saved settings that got reset during the clean install (even though the settings were still there on a fresh install).
Forum: Plugins
In reply to: [Link Fixer] After clearing 404 errors site goes down due to loopThe plugin does seem to be working and I don’t see the error after clearing the 404 errors anymore.
After doing more testing it looks as if the update to the “Broken Link Checker” plugin was throwing the site offline due to very high CPU load. I limited the CPU on that and the site recovered and I do not see that redirect error anymore.
I still don’t know why there is an issue with the path.
Thanks for all your help!