want to open my webiste in hubspot native popup window

I have created crm cards and added a link in data fetch URL, But we dont to open our website in new tab, we can to open our wesbite in hubspot native window popup.

is there any suggestion?

Hi @EMusk ,
See the screenshots and code below:

Please use this on the function action then go to contacts → edit any contacts
<?php
public function fetch_view(){
$results = array(
“results” => array() ,
“primaryAction” => array(
“type” => “IFRAME”,
“width” => 890,
“height” => 748,
“uri” => url(“text/” ) ,
“label” => “Settings”
)
);
return json_encode($results);

}

?>

Hope this helps!
If we were able to answer your query, kindly help the community by marking it as a solution.
Thanks and Regards.