希望有人可以提供帮助。我目前安装了woocommerce
wcvendors
。通过使用重定向登录,对非供应商隐藏产品。我想删除此重定向,只是让未经许可的用户看到一条消息。我看着插件没有运气。当非供应商点击产品时,他们应该收到一些消息。目前,我有1000个重定向,它不是一件好事。
以下是我当前的重定向代码,您可以在其中查看wcvndors
如何调出供应商。
只是希望某人有代码或能指出我正确的方向,
我喜欢facebook在没有登录时如何操作,弹出一个可以x出的模态。感谢
function wpse_131562_redirect() {
if (!WCV_Vendors::is_vendor(get_current_user_id())
&& (is_product() || is_cart() || is_checkout())
) {
// feel free to customize the following line to suit your needs
wp_redirect("/my-account/");
exit;
}
}
add_action('template_redirect', 'wpse_131562_redirect');
答案 0 :(得分:0)
请尝试以下代码:
function wpse_131562_redirect() {
if (!WCV_Vendors::is_vendor(get_current_user_id())
&& (is_product() || is_cart() || is_checkout())
) {
// feel free to customize the following line to suit your needs
wp_redirect(home_url()."/my-account/");
exit;
}
}
add_action('template_redirect', 'wpse_131562_redirect');