Abu-Hattem I need to hide the price of the product of anymous user unless someone is logged in … is this available and if not can you create a plugin to do so thanks in advance.
kriacoesagency Abu-Hattem Hello my friend, good afternoon, I can develop the plugin so that the price is hidden until the user is logged in. Talk to me: https://codecanyon.net/user/kriacoesagency
AlexMillerJr Price Hiding: To hide prices unless users are logged in: CSS: .price { display: none; } Backend: if ($user_is_logged_in) { echo $product_price; } else { echo “Login to see the price.”; }