{"id":7601,"date":"2021-09-30T19:20:59","date_gmt":"2021-10-01T02:20:59","guid":{"rendered":"https:\/\/codedcommerce.com\/?post_type=product&#038;p=7601"},"modified":"2023-10-08T19:34:32","modified_gmt":"2023-10-09T02:34:32","slug":"hide-pricing-except-for-authenticated-users","status":"publish","type":"woo-code","link":"https:\/\/codedcommerce.com\/woo\/hide-pricing-except-for-authenticated-users\/","title":{"rendered":"Hide pricing except for authenticated users"},"content":{"rendered":"\n<pre class=\"wp-block-code language-php\"><code>add_filter( 'woocommerce_get_price_html', function( $price_html, $product ) {\n\n\t\/\/ Unauthenticated Users Price Hide And Message\n\tif( is_product() || is_shop() || is_product_category() ) {\n\t\tif( ! get_current_user_id() ) {\n\t\t\treturn sprintf(\n\t\t\t\t'\n\t\t\t\t\t&lt;p id=\"authentication-required\">\n\t\t\t\t\t\tPlease &lt;a href=\"%s\">&#91;log in]&lt;\/a>\n\t\t\t\t\t\tor &lt;a href=\"%s\">&#91;register]&lt;\/a> to see pricing.\n\t\t\t\t\t&lt;\/p>\n\t\t\t\t',\n\t\t\t\t'\/my-account\/', '\/registration\/'\n\t\t\t);\n\t\t}\n\t}\n\n\t\/\/ Selected Variation Price\n\tif( $product->is_type( 'variation' ) ) {\n\t\treturn $price_html;\n\t}\n\n\t\/\/ Variable Products\n\tif(\n\t\t$product->is_type( 'variable' )\n\t\t|| $product->is_type( 'variable-subscription' )\n\t) {\n\n\t\t\/\/ Hiding: Single Products, Variable Price (Range)\n\t\tif( is_product() ) {\n\t\t\treturn '';\n\t\t}\n\n\t\t\/\/ Archives Remove The Word From\n\t\tif( is_shop() || is_product_category() ) {\n\t\t\treturn str_replace( 'From: ', '', $price_html );\n\t\t}\n\t}\n\n\t\/\/ Default\n\treturn $price_html;\n\n}, 10, 2 );<\/code><\/pre>\n","protected":false},"template":"","class_list":["post-7601","woo-code","type-woo-code","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/woo-code\/7601","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/woo-code"}],"about":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/types\/woo-code"}],"wp:attachment":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/media?parent=7601"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}