id = 'shipping_description'; $this->short_desc = __( 'Shipping Descriptions', 'woocommerce-jetpack' ); $this->desc = __( 'Add descriptions to shipping methods on frontend.', 'woocommerce-jetpack' ); $this->link_slug = 'woocommerce-shipping-descriptions'; parent::__construct(); if ( $this->is_enabled() ) { $this->shipping_descriptions_visibility = apply_filters( 'booster_option', 'both', get_option( 'wcj_shipping_descriptions_visibility', 'both' ) ); $this->shipping_descriptions_position = apply_filters( 'booster_option', 'after', get_option( 'wcj_shipping_descriptions_position', 'after' ) ); add_filter( 'woocommerce_cart_shipping_method_full_label', array( $this, 'shipping_description' ), PHP_INT_MAX, 2 ); } } /** * shipping_description. * * @version 3.6.0 * @since 2.5.6 * @todo `shipping_descriptions_position` on per method basis */ function shipping_description( $label, $method ) { if ( 'checkout_only' === $this->shipping_descriptions_visibility && is_cart() ) { return $label; } if ( 'cart_only' === $this->shipping_descriptions_visibility && is_checkout() ) { return $label; } $use_shipping_instances = ( 'yes' === get_option( 'wcj_shipping_descriptions_use_shipping_instance', 'no' ) ); $option_id = 'wcj_shipping_description_' . ( $use_shipping_instances ? 'instance_' . $method->instance_id : $method->method_id ); if ( '' != ( $desc = get_option( $option_id, '' ) ) ) { switch ( $this->shipping_descriptions_position ) { case 'before': return $desc . $label; case 'instead': return $desc; default: // 'after' return $label . $desc; } } else { return $label; } } } endif; return new WCJ_Shipping_Descriptions();