01/20/2014 at 12:09 pm
#277542
Keymaster
@ Niek
This can only be done by editing the PHP code for this extension. You need to edit the connections-siteshot.php
file found here:
../wp-content/plugins/connections-siteshot/
Change line 139
from this:
$link = $links[0];
To this:
$link = isset( $links[1] ) ? $links[1] : $links[0];
This should cause SiteShot to use the second link if one exists and if one does not, it’ll use the first link.
Hope that helps!