artikus11
10/27/2018 - 9:54 PM

Быстрый хак добавления формы из AnyComment в WooCommerce.

Быстрый хак добавления формы из AnyComment в WooCommerce.

/**
 * Get form AnyComment
 */
function woo_anycomment() {
	
	echo do_shortcode( '[anycomment include="true"]' );
}
/**
 * Get tabs reviews to AnyComment
 *
 * @param $tabs
 *
 * @return mixed
 */
function woo_anycomment_product_tabs( $tabs ) {
	
	global $product;
	$tabs['reviews'] = array(
		'title'    => sprintf( __( 'Reviews (%d)', 'woocommerce' ), $product->get_review_count() ),
		'priority' => 30,
		'callback' => 'woo_anycomment',
	);
	
	return $tabs;
}

add_filter( 'woocommerce_product_tabs', 'woo_anycomment_product_tabs', 99 );