이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Degree of Difficulty for Sensei

설명

Courses will have a new tag to set their Degree of Difficulty. You can choose between 3 predefined options: Beginner, Intermediate and Advanced.
You can add, edit or remove your own degrees of difficulty by going to “Courses > Degrees of Difficulty” from the menu.

Upload and display an image (or icons, pictograms) for your degree of difficulty (thanks to John James Jacoby and his WP Term Images plugin!).

Degrees of Difficulty can be displayed by your theme using the dds_get_sensei_course_degrees_of_difficulty() function.

스크린샷

  • Degree of Difficulty icons displayed next to the WooCommerce course product price.
  • Degree of Difficulty tooltip displayed when hovering the icon.
  • Degrees of Difficulty administration screen.
  • Edit a Degree of Difficulty.
  • Add a Degree of Difficulty to your Sensei course.

설치

Installing “Degree of Difficulty for Sensei” can be done either by searching for “Degree of Difficulty for Sensei” via the “Plugins > Add New” screen in your WordPress dashboard, or by using the following steps:

  1. Download the plugin via WordPress.org
  2. Upload the ZIP file through the ‘Plugins > Add New > Upload’ screen in your WordPress dashboard
  3. Activate the plugin through the ‘Plugins’ menu in WordPress

FAQ

Installation Instructions

Installing “Degree of Difficulty for Sensei” can be done either by searching for “Degree of Difficulty for Sensei” via the “Plugins > Add New” screen in your WordPress dashboard, or by using the following steps:

  1. Download the plugin via WordPress.org
  2. Upload the ZIP file through the ‘Plugins > Add New > Upload’ screen in your WordPress dashboard
  3. Activate the plugin through the ‘Plugins’ menu in WordPress
Does this plugin depend on any others?

Yes. It depends on the Sensei LMS plugin.

Does this create new database tables?

No. There are no new database tables with this plugin.

Does this load additional JS or CSS files ?

Yes. It loads the term-image.css and term-image.js files on the admin screens related to Degree of Difficulty.
Those files are loaded by the WP Term Images plugin which comes included.

Can I add an icon to my degree of difficulty?

Yes. Click on the “Choose Image” button when adding or editing a Degree of Difficulty.

Sample icons are available in the assets/images/ plugin folder.

How do I display the degree of difficulty of a course?

The plugin comes with an helper function named dds_get_sensei_course_degree_of_difficulty().
It accepts a Sensei course ID or a WooCommerce product ID as first argument.

Choose where you would like to display degrees of difficulty and make use of that function in your theme’s functions.php file.
Here is a complete example to display the degree of difficulty next to the WooCommerce product price:

/**
 * WooCommerce template:
 * Add Sensei course degree(s) of difficulty
 *
 * @uses dds_get_sensei_course_degrees_of_difficulty()
 */
function mytheme_woocommerce_sensei_course_degrees_of_difficulty() {
    global $product;

    // Check product has a Sensei course.
    // Get Sensei course where WooCommerce product ID === course_woocommerce_product.
    $product_id = $product->get_id();

    if ( ! function_exists( 'dds_get_sensei_course_degrees_of_difficulty' ) ) {
        return;
    }

    $is_woocommerce_product = true;

    /**
     * Our course degrees of difficulty.
     *
     * @var array Array of arrays. Degree of difficulty array will provide id, name, slug & image_url.
     */
    $degrees_of_difficulty = dds_get_sensei_course_degrees_of_difficulty( $product_id, $is_woocommerce_product );

    if ( ! $degrees_of_difficulty ) {
        return;
    }

    foreach ( (array) $degrees_of_difficulty as $difficulty ) {

        $classes = 'mytheme-difficulty ' . $difficulty['slug'];

        $title = 'Degree of Difficulty: ' . $difficulty['name'];
        ?>
        <span class="mytheme-difficulty-wrapper">
            <span class="<?php esc_attr_e( $classes ); ?>" title="<?php esc_attr_e( $title ); ?>">
                <?php if ( $difficulty['image_url'] ) : ?>
                    <img src="<?php esc_attr_e( $difficulty['image_url'] ); ?>" alt="<?php esc_attr_e( $title ); ?>" />
                <?php else : ?>
                    <?php esc_html_e( $difficulty['name'] ); ?>
                <?php endif; ?>
            </span>
        </span>
        <?php
    }
}

/**
 * Add Sensei course degree(s) of difficulty after product price.
 *
 * woocommerce_template_single_price hook has priority 10
 */
add_action( 'woocommerce_single_product_summary', 'mytheme_woocommerce_sensei_course_degrees_of_difficulty', 15 );

/**
 * Add Sensei course degree(s) of difficulty after product price.
 *
 * woocommerce_template_loop_price hook has priority 10
 */
add_action( 'woocommerce_after_shop_loop_item_title', 'mytheme_woocommerce_sensei_course_degrees_of_difficulty', 15 );
Is the plugin translated?

Yes. It is translated in French (fr_FR).
You will find the translation files in the lang/ folder.
New translations are welcome at https://translate.wordpress.org/projects/wp-plugins/degree-of-difficulty-for-sensei

Where can I get support?

https://wordpress.org/support/plugin/degree-of-difficulty-for-sensei/

후기

이 플러그인에 대한 평가가 없습니다.

기여자 & 개발자

“Degree of Difficulty for Sensei”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

“Degree of Difficulty for Sensei”(이)가 1(으)로 번역되었습니다. 기여해 주셔서 번역자님께 감사드립니다.

자국어로 “Degree of Difficulty for Sensei”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.0.1

  • 2017-10-09
  • Fix Add dds_ prefix to WP Term Images functions in case plugin already installed.
  • Fix Add DDS_ prefix to WP Term Images classes in case plugin already installed.
  • Dynamic slug Degree_of_Difficulty_for_Sensei()->slug in degree-of-difficulty-for-sensei-functions.php
  • Add 2 new icon sets in assets/images/

1.0.0

  • 2017-09-25
  • Initial release