I fixed this issue. It’s caused by the realm name having a single quote in the name.
Edit the wp-content/plugins/wow-guild-retrieve/wow-guild.php file.
Find the following line:
$realmstr = str_replace(‘ ‘,’-‘,$realmname);
Immediately after it, add the following line:
$realmstr = str_replace(“‘”, ”, $realmname);
Save the file and it should work for you.