add_filter( ‘wcv_product_ships_from’, ‘ships_from_address’ ); function ships_from_address( $field ){ global $post, $product; $shipping_disabled = wc_string_to_bool( get_option( ‘wcvendors_shipping_management_cap’, ‘no’ ) ); $post = get_post( $product->get_id() ); if ( $product->needs_shipping() && ! $shipping_disabled && WCV_Vendors::is_vendor( $post->post_author ) ) { $vendor_id = WCV_Vendors::get_vendor_from_product( $product->get_id()…Continue reading
add_filter( ‘wcv_export_orders_use_shipping_address’, ‘wcv_order_export_use_shipping_address’ ); function wcv_order_export_use_shipping_address( ){ return false;Continue reading
// Add this to your themes functions.php to change the order, rearrage the lines. First line is first item, last is last etc. add_filter( ‘wcv_dashboard_pages_nav’, ‘change_nav_order’); function change_nav_order( $pages ){ $new_nav_order = array(); $new_nav_order[‘dashboard_home’] = $pages[‘dashboard_home’]; $new_nav_order[‘order’] = $pages[‘order’]; $new_nav_order[‘product’]…Continue reading
/** * Remove widgets from the vendor store and single product pages conditionally. * * You will need the sidebar internal id (eg sidebar-1) * You will need the list of widget id’s you want to disable (eg woocommerce_layered_nav-2, meta-2)…Continue reading
/** * The template for displaying the shipping label * * Override this template by copying it to yourtheme/wc-vendors/dashboard/order * * @package WCVendors_Pro * @version 1.7.5 * @since 1.0.4 * * The following variables are available in this template *…Continue reading
/** * Add the Tax ID Field to the settings page * * In this example we are using ABN/ACN for Australian GST Invoices * You can update this tax label to whatever suits your requirements. */ add_action( ‘wcvendors_settings_before_company_url’, ‘wcv_add_tax_field’…Continue reading
/** * This will disable delete only for published products, leaving drafts to be able to be deleted * You would not need to disable delete in the WC Vendors Settings in WP Admin. */ add_filter( ‘wcv_product_table_row_actions’, ‘wcv_allow_delete_draft’, 10, 2…Continue reading
// Add the tab to the tab nav add_filter( ‘wcv_store_tabs’, ‘add_custom_tab_nav’ ); function add_custom_tab_nav( $tabs ){ // Target is the custom css id for the content tab in the code below this $tabs[‘custom_tab’] = array( ‘label’ => __( ‘Custom’, ‘wcvendors-pro’…Continue reading
// Add the fields to user edit screen. add_action( ‘show_user_profile’, ‘add_extra_user_fields’ ); add_action( ‘edit_user_profile’, ‘add_extra_user_fields’ ); function add_extra_user_fields( $user ){ // Document file URL. $document_file_url = ( $user->_wcv_custom_settings_doc_example ) ? wp_get_attachment_url( $user->_wcv_custom_settings_doc_example ) : ”; // Image file URL. $image_file_url…Continue reading
// Add the video field to the signup form. add_action( ‘wcv_form_input_after__wcv_store_name’, ‘wcv_video_uploader’); function wcv_video_uploader( ){ // Remove this check to have it show on sign up and settings pages. if (‘signup’ == WCVendors_Pro_Store_Form::$form_type ){ echo ‘ Video Uploader ‘; $value…Continue reading