The following macro will unlink all hyperlinks to leave the display text:
Code:
Sub UnlinkHLinks()
Dim oStory As Range
Dim oFld As field
For Each oStory In ActiveDocument.StoryRanges
For Each oFld In oStory.Fields
If oFld.Type = wdFieldHyperlink Then
oFld.Unlink
End If
Next oFld
If oStory.StoryType <> wdMainTextStory Then
While Not (oStory.NextStoryRange Is Nothing)
Set oStory = oStory.NextStoryRange
For Each oFld In oStory.Fields
If oFld.Type = wdFieldHyperlink Then
oFld.Unlink
End If
Next oFld
Wend
End If
Next oStory
Set oStory = Nothing
lbl_Exit:
Set oStory = Nothing
Set oFld = Nothing
Exit Sub
End Sub