UPDATE居中窗口
添加這2計算略低於provider = $(this).attr("data-provider");
:
datop = (($(document).height()-400)/2);
daleft = (($(document).width()-225)/2);
添加這2個參數的屬性:
top="+datop+",left="+daleft+""
這樣的:
"location=1,status=0,scrollbars=0,width=225,height=400,top="+datop+",left="+daleft+""
END
編輯
你可以在這裏找到該文件:可溼性粉劑內容/插件/ WordPress的社交登錄/資產/ JS/connect.js
結束編輯
該文件是「wordpress-social-login \ assets \ js \ connect.js」我不知道這個文件將被安裝在哪裏,但可能你可以找到裏面的函數它在包含登錄信息的每個頁面中(如果可以找到它,則可以卸載,編輯文件並在修改文件後重新安裝)。這應該是您正在搜索的功能:
(function($){
$(function(){
$(".wsl_connect_with_provider").click(function(){//selector.event
popupurl = $("#wsl_popup_base_url").val();//assign text of the element with id #wls_popup_base..
provider = $(this).attr("data-provider");//assign the attribute data-provider of the element with class .wls_connect..
window.open(
popupurl+"provider="+provider,//url
"hybridauth_social_sing_on", //window name
"location=1,status=0,scrollbars=0,width=1000,height=600"//attributes of the window
);
});
});
})(jQuery);
這應該是彈出的代碼
window.open(
popupurl+"provider="+provider,
"hybridauth_social_sing_on",
"location=1,status=0,scrollbars=0,width=1000,height=600"
);
要更改寬度和高度,編輯這個2個PARAMS:..width=1000,height=600"
注意我添加評論讓你明白這個功能在做什麼,你在做什麼
這段代碼不是打開彈出窗口的代碼。什麼是真正的插件名稱? –
該插件是WordPress的社交登錄:http://wordpress.org/plugins/wordpress-social-login/ – Alex
你已經安裝它?我可以看到彈出窗口嗎? –