PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
plugins
/
dokan-pro
/
templates
/
products
/
edit
<?php global $post; $tax_classes = array_filter( array_map( 'trim', explode( "\n", get_option( 'woocommerce_tax_classes' ) ) ) ); $classes_options = array(); $classes_options[''] = __( 'Standard', 'dokan' ); if ( $tax_classes ) { foreach ( $tax_classes as $class ) { $classes_options[ sanitize_title( $class ) ] = esc_html( $class ); } } ?> <div class="dokan-form-horizontal"> <div class="dokan-form-group"> <label class="dokan-w4 dokan-control-label" for="_sku"><?php _e( 'SKU', 'dokan' ); ?></label> <div class="dokan-w4 dokan-text-left"> <?php dokan_post_input_box( $post->ID, '_sku', array( 'placeholder' => __( 'SKU', 'dokan' ) ) ); ?> </div> </div> <div class="dokan-form-group"> <label class="dokan-w4 dokan-control-label" for=""><?php _e( 'Manage Stock?', 'dokan' ); ?></label> <div class="dokan-w6 dokan-text-left"> <?php dokan_post_input_box( $post->ID, '_manage_stock', array('label' => __( 'Enable stock management at product level', 'dokan' ) ), 'checkbox' ); ?> </div> </div> <div class="dokan-form-group show_if_stock"> <label class="dokan-w4 dokan-control-label" for="_stock_qty"><?php _e( 'Stock Qty', 'dokan' ); ?></label> <div class="dokan-w4 dokan-text-left"> <input type="number" name="_stock" id="_stock" step="any" placeholder="10" value="<?php echo wc_stock_amount( get_post_meta( $post->ID, '_stock', true ) ); ?>"> </div> </div> <div class="dokan-form-group hide_if_variable <?php echo ( $product_type == 'simple' ) ? 'show_if_stock' : ''; ?>"> <label class="dokan-w4 dokan-control-label" for="_stock_status"><?php _e( 'Stock Status', 'dokan' ); ?></label> <div class="dokan-w4 dokan-text-left"> <?php dokan_post_input_box( $post->ID, '_stock_status', array( 'options' => array( 'instock' => __( 'In Stock', 'dokan' ), 'outofstock' => __( 'Out of Stock', 'dokan' ) ) ), 'select' ); ?> </div> </div> <div class="dokan-form-group show_if_stock"> <label class="dokan-w4 dokan-control-label" for="_backorders"><?php _e( 'Allow Backorders', 'dokan' ); ?></label> <div class="dokan-w4 dokan-text-left"> <?php dokan_post_input_box( $post->ID, '_backorders', array( 'options' => array( 'no' => __( 'Do not allow', 'dokan' ), 'notify' => __( 'Allow but notify customer', 'dokan' ), 'yes' => __( 'Allow', 'dokan' ) ) ), 'select' ); ?> </div> </div> <?php if ( 'yes' == get_option( 'woocommerce_calc_taxes' ) ) { ?> <div class="dokan-form-group"> <label class="dokan-w4 dokan-control-label" for="_tax_status"><?php _e( 'Tax Status', 'dokan' ); ?></label> <div class="dokan-w4 dokan-text-left"> <?php dokan_post_input_box( $post->ID, '_tax_status', array( 'options' => array( 'taxable' => __( 'Taxable', 'dokan' ), 'shipping' => __( 'Shipping only', 'dokan' ), 'none' => _x( 'None', 'Tax status', 'dokan' ) ) ), 'select' ); ?> </div> </div> <div class="dokan-form-group"> <label class="dokan-w4 dokan-control-label" for="_tax_class"><?php _e( 'Tax Class', 'dokan' ); ?></label> <div class="dokan-w4 dokan-text-left"> <?php dokan_post_input_box( $post->ID, '_tax_class', array( 'options' => $classes_options ), 'select' ); ?> </div> </div> <?php } ?> </div> <!-- .form-horizontal -->
[+]
..
[-] options.php
[edit]
[-] product-list-table-inline-edit-form.php
[edit]
[-] attributes.php
[edit]
[-] shipping.php
[edit]
[-] html-product-variation-download.php
[edit]
[-] html-product-variation.php
[edit]
[-] tmpl-add-attribute.php
[edit]
[-] html-product-attribute.php
[edit]
[-] sidebar.php
[edit]
[-] inventory.php
[edit]
[-] templates-js.php
[edit]