Elementor – Update meta feild for "Elementor" _elementor_data in admin
I am trying to update url in elementor data. $metacontent = get_post_meta($idforupdate, '_elementor_data',true); $with_slash = stripslashes_deep($metacontent); $with_slash = str_replace($value, $url_1, $with_slash); $metacontent1 = str_replace("/", "/", $with_slash); update_post_meta( $idforupdate, '_elementor_data', $metacontent1 ); But.... i tried to remove slashes and add slashes…