That sounds like a plugin or theme conflict. Can you try and gather as much information for us as possible? Please perform the following:
1. Make sure the issue doesn’t persist when Yoast SEO is disabled.
2. Check for conflicts.
3. Check for JavaScript errors with your console.
If you find any JavaScript errors related to Yoast SEO or if there is a conflict with a plugin or a theme, you can create a new GitHub issue for our developers. Please report the issue to the third party developer as well.
If you didn’t find any conflicts or errors, we think the issue is specific to your site. We’d need to investigate further but are unable to do so on these forums. You can purchase Yoast SEO Premium and receive our Premium email support and we can help you further.
Thread Starter
Ryan
(@godsgood33)
All of your questions are answered in my OP, but since you didn’t actually read it for understanding, I will explain it further. It is a plugin conflict…thus the title. I am the developer for the plugin and I’m attempting to figure out why Yoast is causing my plugin to crash. My plugin is https://wordpress.org/plugins/point-tracker. I’ll set the stage for you so you can duplicate.
Yoast SEO installed and active
Point Tracker installed
Attempt to activate PT
Creates first page “Challenge” then crashes. An init function in the Point_Tracker class checks for the presents of a URL parameter, since the parameter doesn’t exist since the plugin is inactive it crashes.
PT will activate fine if Yoast is inactive.
What this tells me is that after the activator method creates the first page, Yoast attempts to crawl that page for some reason. So what I need is a way to at least temporarily bypass Yoast from crawling the pages.
Thread Starter
Ryan
(@godsgood33)
Got it fixed. For others out there, the problem was with the WPSEO_Link_Watcher::save_post method and action hook. Doing a remove_all_actions('save_post') fixed the problem I was having. I’m only doing it during activation and deactivation of my plugin, so it’s not a problem for other plugins.