You’re unauthorized to view this page. Please log in and try again.
/**
* TenaZ - Compliance disclaimer beneath customer reviews on product pages.
*
* Reviews are imported from Google and republished here, which makes the
* claims inside them TenaZ's responsibility. This line frames them correctly:
* individual experiences, not a promise of results, Category D, SAHPRA wording.
*/
if ( ! function_exists( 'tenaz_review_disclaimer_html' ) ) {
function tenaz_review_disclaimer_html() {
if ( ! is_product() ) {
return '';
}
global $product;
if ( ! $product || ! is_a( $product, 'WC_Product' ) || (int) $product->get_review_count() < 1 ) {
return '';
}
return '
';
}
}
/* Append beneath the Reviews tab content. */
add_filter( 'woocommerce_product_tabs', function ( $tabs ) {
if ( empty( $tabs['reviews']['callback'] ) ) {
return $tabs;
}
$original = $tabs['reviews']['callback'];
$tabs['reviews']['callback'] = function () use ( $original ) {
call_user_func( $original );
echo tenaz_review_disclaimer_html();
};
return $tabs;
}, 98 );
/* Fallback for templates that render reviews outside the tab (e.g. Elementor). */
add_action( 'woocommerce_review_after_comment_text', function () {
static $done = false;
if ( $done ) {
return;
}
$done = true;
}, 99 );
You’re unauthorized to view this page. Please log in and try again.
Discount Applied Successfully!
Your savings have been added to the cart.