PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
plugins
/
dokan-pro
/
templates
/
products
<?php /** * Dokan Dashboard Product Variation Template * * @since 2.4 * * @package dokan */ ?> <div class="dokan-attribute-variation-options dokan-edit-row dokan-clearfix"> <div class="dokan-section-heading" data-togglehandler="dokan_attribute_variation_options"> <h2><i class="fa fa-list-alt" aria-hidden="true"></i> <?php _e( 'Attribute', 'dokan' ); ?><span class="show_if_variable"><?php _e( ' and Variation', 'dokan' ) ?></span></h2> <p class="show_if_variable"><?php _e( 'Manage attributes and variations for this variable product.', 'dokan' ); ?></p> <p class="show_if_simple show_if_grouped"><?php _e( 'Manage attributes for this simple product.', 'dokan' ); ?></p> <a href="#" class="dokan-section-toggle"> <i class="fa fa-sort-desc fa-flip-vertical" aria-hidden="true"></i> </a> <div class="dokan-clearfix"></div> </div> <div class="dokan-section-content"> <div class="dokan-product-attribute-wrapper show_if_simple show_if_variable show_if_grouped"> <ul class="dokan-attribute-option-list"> <?php global $wc_product_attributes; // Product attributes - taxonomies and custom, ordered, with visibility and variation attributes set $attributes = maybe_unserialize( get_post_meta( $post_id, '_product_attributes', true ) ); // Output All Set Attributes if ( ! empty( $attributes ) ) { $attribute_keys = array_keys( $attributes ); $attribute_total = sizeof( $attribute_keys ); for ( $i = 0; $i < $attribute_total; $i ++ ) { $attribute = $attributes[ $attribute_keys[ $i ] ]; $position = empty( $attribute['position'] ) ? 0 : absint( $attribute['position'] ); $taxonomy = ''; $metabox_class = array(); if ( $attribute['is_taxonomy'] ) { $taxonomy = $attribute['name']; if ( ! taxonomy_exists( $taxonomy ) ) { continue; } $attribute_taxonomy = $wc_product_attributes[ $taxonomy ]; $metabox_class[] = 'taxonomy'; $metabox_class[] = $taxonomy; $attribute_label = wc_attribute_label( $taxonomy ); } else { $attribute_label = apply_filters( 'woocommerce_attribute_label', $attribute['name'], $attribute['name'], false ); } dokan_get_template_part( 'products/edit/html-product-attribute', '', array( 'pro' => true, 'thepostid' => $post_id, 'taxonomy' => $taxonomy, 'attribute_taxonomy' => isset( $attribute_taxonomy ) ? $attribute_taxonomy : null, 'attribute_label' => $attribute_label, 'attribute' => $attribute, 'metabox_class' => $metabox_class, 'position' => $position, 'i' => $i ) ); } } ?> </ul> <div class="dokan-attribute-type"> <select name="predefined_attribute" id="predefined_attribute" class="dokan-w5 dokan-form-control dokan_attribute_taxonomy" data-predefined_attr='<?php echo json_encode( $attribute_taxonomies ); ?>'> <option value=""><?php _e( 'Custom Attribute', 'dokan' ); ?></option> <?php if ( ! empty( $attribute_taxonomies ) ) { foreach ( $attribute_taxonomies as $tax ) { $attribute_taxonomy_name = wc_attribute_taxonomy_name( $tax->attribute_name ); $label = $tax->attribute_label ? $tax->attribute_label : $tax->attribute_name; echo '<option value="' . esc_attr( $attribute_taxonomy_name ) . '">' . esc_html( $label ) . '</option>'; } } ?> </select> <a href="#" class="dokan-btn dokan-btn-default add_new_attribute"><?php _e( 'Add attribute', 'dokan' ) ?></a> <a href="#" class="dokan-btn dokan-btn-default dokan-btn-theme dokan-save-attribute"><?php _e( 'Save attribute', 'dokan' ) ?></a> <span class="dokan-spinner dokan-attribute-spinner dokan-hide"></span> </div> </div> <div class="dokan-product-variation-wrapper show_if_variable"> <?php dokan_product_output_variations(); ?> </div> </div> </div>
[+]
..
[-] product-variation.php
[edit]
[-] group-product.php
[edit]
[-] linked-product-content.php
[edit]
[-] product-lot-discount.php
[edit]
[-] product-shipping-content.php
[edit]
[+]
edit
[-] product-edit.php
[edit]