LifterLMS 확장 – 우커머스 사용시 강의 가격표

LifterLMS 확장 – 우커머스 사용시 강의 가격표

강의 및 멤버십에서 LifterLMS WooCommerce 가격표를 제거하려면 다음 코드를 하위 테마의 functions.php 파일 또는 사용자 지정 플러그인에 추가하십시오.

<?php // don't copy this line to your functions.php file!
/**
 * Remove LLMS WooCommerce Pricing tables from courses and memberships
 * @return   [type]
 */
function my_mod_llms_wc_actions() {

	remove_action( 'lifterlms_single_course_after_summary', 'llms_wc_output_pricing_table', 60 );
	remove_action( 'lifterlms_single_membership_after_summary', 'llms_wc_output_pricing_table', 10 );

}
add_action( 'init', 'my_mod_llms_wc_actions', 100 );

원문: https://lifterlms.com/docs/remove-wc-pricing-tables/

코멘트 제출

Don`t copy text!