Jamie-
Open easy-pinterest.php
Find this line:
$pinterest_content = str_replace( '<a','<a target="_blank"',$pinterest_content );
Add Below It:
$pinterest_content = str_replace( 'href="','href="http://www.pinterest.com',$pinterest_content );
This is working for me…
// Remove Option Tree Settings Menu
function remove_ot_menu () {
remove_menu_page( 'ot-settings' );
}
add_action( 'admin_menu', 'remove_ot_menu' );