Classic wordpress and PRO post/page editor not working

Hi,

My website https://tarekrabaa.com using PRO theme.
The classic post/page editor not working and even the PRO editor not working.
I cannot add any new post/page

Would you plz help.

I solved
I deleted the code
function add_defer_to_cf7( $url ) { //If not js file OR js file with 'particles.js' OR 'jquery.js' name string, then no need to apply defer if(FALSE === strpos( $url, '.js') || ((strpos( $url, 'particles.js') > 0) || (strpos($url, 'jquery.js') > 0))){ return $url; } else{ //set defer for .js files return "$url' defer='defer"; } } add_filter( 'clean_url', 'add_defer_to_cf7', 11, 1 );

Hello @tarekr,

We are just glad that you have figured it out a way to correct the said issue.
Thanks for letting us know!

Best Regards.

1 Like

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