我正在WooCommerce WordPress页面中工作。 当有人未登录或用户尚未活跃时,是否可以隐藏搜索框?
答案 0 :(得分:2)
查找呈现搜索框的位置。它可以是主题头文件或其他地方。我不能肯定地说,因为我不知道您使用什么主题等等。
但是,找到搜索框容器元素,并按以下方式使用
<?php
if ( is_user_logged_in() ) {
// Your usual search function goes here
} else {
// Show some message for user to log in, etc..
}
?>