Skip to content

Instantly share code, notes, and snippets.

@digitalchild
Created December 8, 2015 00:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save digitalchild/4ea5922073803ddc5e5d to your computer and use it in GitHub Desktop.
Save digitalchild/4ea5922073803ddc5e5d to your computer and use it in GitHub Desktop.
Ingredients custom field added
<?php
/**
* The template for displaying the Product edit form
*
* Override this template by copying it to yourtheme/wc-vendors/dashboard/
*
* @package WCVendors_Pro
* @version 1.1.1
*/
/**
* DO NOT EDIT ANY OF THE LINES BELOW UNLESS YOU KNOW WHAT YOU'RE DOING
*
*/
$title = ( is_numeric( $object_id ) ) ? __('Save Changes', 'wcvendors-pro') : __('Add Product', 'wcvendors-pro');
$product = ( is_numeric( $object_id ) ) ? wc_get_product( $object_id ) : null;
// Get basic information for the product
$product_title = ( isset($product) && null !== $product ) ? $product->post->post_title : '';
$product_description = ( isset($product) && null !== $product ) ? $product->post->post_content : '';
$product_short_description = ( isset($product) && null !== $product ) ? $product->post->post_excerpt : '';
/**
* Ok, You can edit the template below but be careful!
*/
?>
<h2><?php echo $title; ?></h2>
<!-- Product Edit Form -->
<form method="post" action="" id="wcv-product-edit" class="wcv-form">
<!-- Basic Product Details -->
<div class="wcv-product-basic wcv-product">
<!-- Product Title -->
<?php WCVendors_Pro_Product_Form::title( $object_id, $product_title ); ?>
<!-- Product Description -->
<?php WCVendors_Pro_Product_Form::description( $object_id, $product_description ); ?>
<!-- Product Short Description -->
<?php WCVendors_Pro_Product_Form::short_description( $object_id, $product_short_description ); ?>
<!-- Ingredients -->
<?php
WCVendors_Pro_Form_Helper::textarea( array(
'post_id' => $object_id,
'id' => '_wcv_custom_product_ingredients',
'label' => __( 'Ingredients', 'wcvendors-pro' ),
'placeholder' => __( 'Ingredients', 'wcvendors-pro' ),
'desc_tip' => 'true',
'description' => __( 'The product ingredients', 'wcvendors-pro' ),
) );
?>
<!-- Product Categories -->
<?php WCVendors_Pro_Product_Form::categories( $object_id, true ); ?>
<!-- Product Tags -->
<?php WCVendors_Pro_Product_Form::tags( $object_id ); ?>
<!-- Product Attributes (if any) -->
<?php WCVendors_Pro_Form_helper::attribute( $object_id ); ?>
</div>
<div class="all-100">
<!-- Media uploader -->
<div class="wcv-product-media">
<?php WCVendors_Pro_Form_helper::product_media_uploader( $object_id ); ?>
</div>
</div>
<hr />
<div class="all-100">
<!-- Product Type -->
<div class="wcv-product-type">
<?php WCVendors_Pro_Product_Form::product_type( $object_id ); ?>
</div>
</div>
<div class="all-100">
<div class="wcv-tabs top" data-prevent-url-change="true">
<?php WCVendors_Pro_Product_Form::product_meta_tabs( ); ?>
<!-- General Product Options -->
<div class="wcv-product-general tabs-content" id="general">
<div class="hide_if_grouped">
<?php WCVendors_Pro_Product_Form::sku( $object_id ); ?>
</div>
<div class="options_group show_if_external">
<?php WCVendors_Pro_Product_Form::external_url( $object_id ); ?>
<?php WCVendors_Pro_Product_Form::button_text( $object_id ); ?>
</div>
<div class="show_if_simple show_if_external">
<!-- Price -->
<?php WCVendors_Pro_Product_Form::price( $object_id ); ?>
<!-- Sale Price -->
<?php WCVendors_Pro_Product_Form::sale_price( $object_id ); ?>
</div>
<div class="show_if_simple show_if_external">
<!-- Tax -->
<?php WCVendors_Pro_Product_Form::tax( $object_id ); ?>
</div>
<div class="show_if_downloadable" id="files_download">
<!-- Downloadable files -->
<?php WCVendors_Pro_Product_Form::download_files( $object_id ); ?>
<!-- Download Limit -->
<?php WCVendors_Pro_Product_Form::download_limit( $object_id ); ?>
<!-- Download Expiry -->
<?php WCVendors_Pro_Product_Form::download_expiry( $object_id ); ?>
<!-- Download Type -->
<?php WCVendors_Pro_Product_Form::download_type( $object_id ); ?>
</div>
</div>
<!-- Inventory -->
<div class="wcv-product-inventory inventory_product_data tabs-content" id="inventory">
<?php WCVendors_Pro_Product_Form::manage_stock( $object_id ); ?>
<?php do_action( 'woocommerce_product_options_stock' ); ?>
<div class="stock_fields show_if_simple show_if_variable">
<?php WCVendors_Pro_Product_Form::stock_qty( $object_id ); ?>
<?php WCVendors_Pro_Product_Form::backorders( $object_id ); ?>
</div>
<?php WCVendors_Pro_Product_Form::stock_status( $object_id ); ?>
<div class="options_group show_if_simple show_if_variable">
<?php WCVendors_Pro_Product_Form::sold_individually( $object_id ); ?>
</div>
<?php do_action( 'woocommerce_product_options_sold_individually' ); ?>
<?php do_action( 'woocommerce_product_options_inventory_product_data' ); ?>
</div>
<!-- Shipping -->
<div class="wcv-product-shipping shipping_product_data tabs-content" id="shipping">
<!-- Shipping rates -->
<?php WCVendors_Pro_Product_Form::shipping_rates( $object_id ); ?>
<!-- weight -->
<?php WCVendors_Pro_Product_Form::weight( $object_id ); ?>
<!-- Dimensions -->
<?php WCVendors_Pro_Product_Form::dimensions( $object_id ); ?>
<?php do_action( 'woocommerce_product_options_dimensions' ); ?>
<!-- shipping class -->
<?php WCVendors_Pro_Product_Form::shipping_class( $object_id ); ?>
<?php do_action( 'woocommerce_product_options_shipping' ); ?>
</div>
<!-- Upsells and grouping -->
<div class="wcv-product-upsells tabs-content" id="linked_product">
<?php WCVendors_Pro_Product_Form::up_sells( $object_id ); ?>
<?php WCVendors_Pro_Product_Form::crosssells( $object_id ); ?>
</div>
<?php WCVendors_Pro_Product_Form::form_data( $object_id ); ?>
<?php WCVendors_Pro_Product_Form::save_button( $title ); ?>
<?php WCVendors_Pro_Product_Form::draft_button( __('Save Draft',' wcvendors-pro') ); ?>
</div>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment