Edit With Pro Tab not showing up Page and Post Editor and Edit With Pro Not Working

Hello support team,

I have created a video outlining the issue I am having!

I have tried clearing my cache, deactivating my cache, and have deactivated the wordpress plugins and the problem still persists.

I have contacted my hosting provider and they said that something is breaking the site on an application level.

Here is a photo of what went wrong

Any help here would be appreciated!

  • Daniel

Hi Daniel,

I can see the issue and I can confirm something is really broken here. Upon further checking, I can see you have this code on your child theme.

function defer_parsing_of_js ( $url ) {
if ( FALSE === strpos( $url, '.js' ) ) return $url;
if ( strpos( $url, 'jquery.js' ) ) return $url;
return "$url' defer ";
}
add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );

I think this is the cause of the issue. Jquery.js must load first before any other JS files that depend on this library works. That code break the normal loading of JS files. Please remove it from your child theme functions.php and then try again.

Let us know how this goes.

Hey Lely,

Thank you for helping me troubleshoot this!

Removing this code has fixed the issue! :grinning:

  • Daniel

You’re always welcome Daniel!

Cheers.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.