Home Forums WC Vendors Pro Support Allow admin to temporally become a vendor

NOTICE: We've Moved to a Ticket System for Support

As of August 31, 2017 (12am EST) our support forums will be retired (read-only), and we will be moving to a support ticket system.Β  This will allow us to better organize and answer support requests, and provide a more personalized experience as we assist our customers.

For the time being, we will leave our forums open for reading and learning while we work on creating a more robust Knowledge Base for everyone to use.

If you are a WC Vendors Pro customer please open a support ticket here. 

If you are a WC Vendors user please open a support ticket on the Wordpress.org forums.

The information on this forum is outdated and in most instances no longer relevant. Please be sure to check our documentation for the most up to date information.

https://docs.wcvendors.com/

Thank you to all of our customers!

 

Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #29258
    Fanie
    Participant

    I have a live css editor that I would like to use on the dashboard and other pages, how can I make it so that admins can become vendors.

    #29275
    WC Vendors Support
    Participant

    You can do it, but use this at your own risk. Warning: Don’t change settings on the Pro Dashboard, edit products, just use it to view stuff. If you try to change things, you run a severe risk of screwing up your website. There’s a reason we don’t allow admins to be vendors. πŸ™‚ But viewing pages won’t harm anything, just don’t save anything/edit anything.

    In the file /plugins/wc-vendors-pro/master/public/class-wcvendors-pro-dashboard.php

    Delete lines # 430, 431 & 432 that say:

    } else { 
    echo __( 'Admins cannot apply to be vendors. ', 'wcvendors-pro' ); 
    return false;  

    Now admins can see the Pro Dashboard. Next time you update WC Vendors Pro, this change will be overwritten as well, and recommend when you’re done doing your live css tweaks you change it back just to be on the safe side. πŸ™‚

    #29284
    Fanie
    Participant

    Thank you Ben

    #29358
    2341345
    Participant

    Ben,
    Can you please elaborate here. Regarding simplyshohooks, if I allow admins to become vendors with the above php edit, can I begin to customize the PRO vendor dashboard with filter and action hooks? When you say, “Don’t change settings on the Pro Dashboard, edit products, just use it to view stuff. If you try to change things, you run a severe risk of screwing up your website,” does this mean I should absolutely not be looking to customize this page?

    Thanks

    #29363
    WC Vendors Support
    Participant

    You can customize the page as much as you want. That’s OK! What I mean is don’t go to Pro Dashboard > Settings > Shipping and start configuring settings.

    — Configuring settings via Pro Dashboard = BAD

    — Tweaking how the Dashboard LOOKS and WORKS == Good! πŸ™‚

    #29385
    2341345
    Participant

    Thank you

    #29394
    2341345
    Participant

    I’m a little afraid to change my role from administrator to vendor in the user panel. Will I be able to still access the panel as if i were still the admin?

    #29395
    2341345
    Participant

    I can verify that changing a non admin user to admin then trying to access the pro dashboard will not work. System gives the error of : Your account is not setup as a vendor.

    APPLY TO BECOME A VENDOR?

    This makes sense as i just changed the role from vendor to admin, but what if i change the primary admin account to vendor? Will I be able to access the PRO dashboard as an admin ( and vendor)? And will i lose my admin capabilities completely?

    Wordpress may throw an error; I do not I’m afraid to try.

    #29397
    WC Vendors Support
    Participant

    You cant have two user roles. It checks the main role. You cant be an admin AND a vendor.

    #29401
    2341345
    Participant

    Can you please supply something like the attached images?

    #29403
    WC Vendors Support
    Participant

    No way, we’d never supply something like that. You’re looking at a drag and drop interface for the front end of a website. We aren’t theme authors. πŸ™‚ We’re plugin developers. We allow your vendors to sell. Making your website look pretty isnt our job πŸ™‚

    #29406
    2341345
    Participant

    Haha, Thanks ben. I must be missing something in my understanding.

    But just to be clear, I am looking for a visual guide to the hooks similar to this attachment and similar to what simplyshohooks shows… In other words, could you supply an image of the prodashboard with the relevant hooks that are being used layered on top (like a simple jpg) … not necessarily any custom coding (not sure if i was clear in my question and the attachment) perhaps I do not understand the pro dashboard, like maybe it’s not coded with hooks at all, (like in the way Woocommerce single product page is) …

    Thanks!

    #29407
    2341345
    Participant

    SO this attachment isn’t drag and drop functionality so to speak,

    It’s a woocmmerce contributor explaning how to customize with hooks, and he is showing how to call the relevant hooks and how each relates to placement on the page (with this jpg).

    Thanks

    #29408
    WC Vendors Support
    Participant

    Oh! You mean……. documentation. πŸ™‚ We’ll be updating all of that once variations is pushed then do it all at once.

    Here’s a list of the Pro template actions:

    dashboard/product-edit.php:                     <?php do_action( 'wcv_before_general_tab', $object_id ); ?>
    dashboard/product-edit.php:                     <?php do_action( 'wcv_after_general_tab', $object_id ); ?>
    dashboard/product-edit.php:                     <?php do_action( 'wcv_before_inventory_tab', $object_id ); ?>
    dashboard/product-edit.php:                             <?php do_action( 'woocommerce_product_options_stock' ); ?>
    dashboard/product-edit.php:                             <?php do_action( 'woocommerce_product_options_sold_individually' ); ?>
    dashboard/product-edit.php:                             <?php do_action( 'woocommerce_product_options_inventory_product_data' ); ?>
    dashboard/product-edit.php:                     <?php do_action( 'wcv_after_inventory_tab', $object_id ); ?>
    dashboard/product-edit.php:                     <?php do_action( 'wcv_before_shipping_tab', $object_id ); ?>
    dashboard/product-edit.php:                                     <?php do_action( 'woocommerce_product_options_dimensions' ); ?>
    dashboard/product-edit.php:                                     <?php do_action( 'woocommerce_product_options_shipping' ); ?>
    dashboard/product-edit.php:                     <?php do_action( 'wcv_after_shipping_tab', $object_id ); ?>
    dashboard/product-edit.php:                     <?php do_action( 'wcv_before_linked_tab', $object_id ); ?>
    dashboard/product-edit.php:                     <?php do_action( 'wcv_after_linked_tab', $object_id ); ?>
    dashboard/product-edit.php:                     <?php do_action( 'wcv_before_attributes_tab', $object_id ); ?>
    dashboard/product-edit.php:                     <?php do_action( 'wcv_after_attributes_tab', $object_id ); ?>
    dashboard/store-settings.php:           <?php do_action( 'wcvendors_settings_after_shop_name' ); ?>
    dashboard/store-settings.php:           <?php do_action( 'wcvendors_settings_after_shop_description' ); ?>
    dashboard/store-settings.php:           <?php do_action( 'wcvendors_settings_after_seller_info' ); ?>
    dashboard/store-settings.php:           <?php do_action( 'wcvendors_settings_before_paypal' ); ?>
    dashboard/store-settings.php:           <?php do_action( 'wcvendors_settings_after_paypal' ); ?>
    dashboard/store-settings.php:           <?php do_action( 'wcvendors_settings_before_branding' ); ?>
    dashboard/store-settings.php:           <?php do_action( 'wcvendors_settings_after_branding' ); ?>
    dashboard/store-settings.php:           <?php do_action( 'wcvendors_settings_before_shipping' ); ?>
    dashboard/store-settings.php:           <?php do_action( 'wcvendors_settings_after_shipping' ); ?>
    front/vendor-signup-form.php:                   <?php do_action( 'wcvendors_settings_after_shop_name' ); ?>
    front/vendor-signup-form.php:                   <?php do_action( 'wcvendors_settings_after_shop_description' ); ?>
    front/vendor-signup-form.php:                   <?php do_action( 'wcvendors_settings_after_seller_info' ); ?>
    front/vendor-signup-form.php:           <?php do_action( 'wcvendors_settings_before_shipping' ); ?>
    front/vendor-signup-form.php:           <?php do_action( 'wcvendors_settings_after_shipping' ); ?>
    store/store-header.php:<?php do_action( 'wcv_before_vendor_store_header' ); ?>
    store/store-header.php:                                 <?php do_action( 'wcv_before_vendor_store_title' ); ?>
    store/store-header.php:                                 <?php do_action( 'wcv_after_vendor_store_title' ); ?>
    store/store-header.php:                                 <?php do_action( 'wcv_before_vendor_store_rating' ); ?>
    store/store-header.php:                                 <?php do_action( 'wcv_after_vendor_store_rating' ); ?>
    store/store-header.php:                                 <?php do_action( 'wcv_before_vendor_store_description' ); ?>
    store/store-header.php:                                 <?php do_action( 'wcv_after_vendor_store_description' ); ?>
    store/store-header.php:<?php do_action( 'wcv_after_vendor_store_header' ); ?>
    store/store-ratings.php:        <?php do_action( 'woocommerce_before_main_content' ); ?>
    store/store-ratings.php:        <?php do_action( 'woocommerce_after_main_content' ); ?>
    store/store-ratings.php:        <?php do_action( 'woocommerce_sidebar' ); ?>
    

    And here’s a list of the filters:

    dashboard/order/order_details.php:                                                                                                                          if ( in_array( $meta['meta_key'], apply_filters( 'woocommerce_hidden_order_itemmeta', array(
    dashboard/order/order_details.php:                                                                                                                          $meta['meta_key']   = apply_filters( 'woocommerce_attribute_label', wc_attribute_label( $meta['meta_key'], $_product ), $meta['meta_key'] );

    Now of course that’s not a complete list, those are actions/filters you can use instead of modifying the templates. So for example if you wanted something on the store header after the vendor store description, you’d just code a function that hooks into wcv_after_vendor_store_description. There’s a ton of additional filters that work for each function. As of today, there are 70 actions, and 238 filters. The ones outside of the templates are:

    admin/partials/vendor/wcvendors-pro-store-meta-shipping-panel.php:<?php do_action( 'wcv_admin_before_store_shipping', $user ); ?>
    admin/partials/vendor/wcvendors-pro-store-meta-shipping-panel.php:<?php do_action( 'wcv_admin_after_store_shipping', $user ); ?>
    admin/partials/vendor/wcvendors-pro-user-meta.php:<?php do_action( 'wcv_admin_before_store_branding', $user ); ?>
    admin/partials/vendor/wcvendors-pro-user-meta.php:<?php do_action( 'wcv_admin_after_store_branding', $user ); ?>
    admin/partials/vendor/wcvendors-pro-vendor-commission-fields.php:<?php do_action( '_wcv_admin_before_store_commission', $user ); ?>
    admin/partials/vendor/wcvendors-pro-vendor-commission-fields.php:<?php do_action( '_wcv_admin_after_store_commission', $user ); ?>
    public/class-wcvendors-pro-dashboard.php:               do_action( 'wcv_pro_before_dashboard' );
    public/class-wcvendors-pro-dashboard.php:               do_action( 'wcv_pro_after_dashboard' );
    public/class-wcvendors-pro-form-helper.php:                     do_action( 'woocommerce_product_options_attributes' );
    public/class-wcvendors-pro-order-controller.php:                        do_action( 'wcvendors_vendor_ship', $order_id, $vendor_id );
    public/class-wcvendors-pro-product-controller.php:              do_action( 'wcv_save_product', $product_id );
    public/class-wcvendors-pro-product-controller.php:                      do_action( 'woocommerce_process_product_file_download_paths', $post_id, 0, $files );
    public/class-wcvendors-pro-product-controller.php:              do_action( 'wcv_save_product_meta', $post_id );
    public/class-wcvendors-pro-store-controller.php:                do_action( 'wcv_pro_store_settings_saved', $store_id, $vendor_id );
    public/class-wcvendors-pro-store-controller.php:                        do_action('wcv_before_main_header', $vendor_id);
    public/class-wcvendors-pro-store-controller.php:                        do_action('wcv_after_main_header', $vendor_id);
    public/class-wcvendors-pro-table-helper.php:            do_action( 'wcvendors_pro_table_before_' . $this->id );
    public/class-wcvendors-pro-table-helper.php:            do_action( 'wcvendors_pro_table_after_' . $this->id );
    public/class-wcvendors-pro-vendor-controller.php:               do_action( 'wcv_save_pending_vendor', $vendor_id );
    public/class-wcvendors-pro-vendor-controller.php:               do_action( 'wcv_pro_store_settings_saved', $vendor_id );
    public/class-wcvendors-pro-vendor-controller.php:                       do_action('wcv_before_main_header', $vendor_id);
    public/class-wcvendors-pro-vendor-controller.php:                       do_action('wcv_after_main_header', $vendor_id);
    public/class-wcvendors-pro-vendor-controller.php:                       do_action('wcv_before_main_header', $vendor_id);
    public/class-wcvendors-pro-vendor-controller.php:                       do_action('wcv_after_main_header', $vendor_id);
    public/forms/class-wcvendors-pro-product-form.php:                      do_action( 'woocommerce_product_options_attributes' );
    public/forms/class-wcvendors-pro-product-form.php:              do_action( 'woocommerce_product_options_sku' );
    public/forms/class-wcvendors-pro-product-form.php:                              do_action( 'woocommerce_product_options_tax' );
    public/forms/class-wcvendors-pro-product-form.php:              do_action( 'woocommerce_product_options_reviews' );
    public/forms/partials/wcvendors-pro-downloadable-files.php:     <?php do_action( 'woocommerce_product_options_downloads' ); ?>
    public/forms/partials/wcvendors-pro-product-attribute.php:                                                                              <?php do_action( 'woocommerce_product_option_terms', $attribute_taxonomy, $i ); ?>

    and

    admin/class-wcvendors-pro-admin-vendor-controller.php:          return $fields = apply_filters( 'wcv_custom_user_fields', array(
    admin/class-wcvendors-pro-admin.php:                    $capability = apply_filters( 'wcv_admin_lockout_capability', 'administrator' );
    admin/class-wcvendors-pro-admin.php:            $redirect_page = apply_filters( 'wcv_admin_lockout_redirect_url', get_permalink( WCVendors_Pro::get_option( 'dashboard_page_id' ) ) );
    admin/class-wcvendors-pro-commission-controller.php:            return apply_filters( 'wcv_commission_types', array(
    admin/class-wcvendors-pro-shipping-controller.php:                      $tabs[ 'wcv_shipping_tab' ] = apply_filters( 'wcv_shipping_tab', array(
    admin/class-wcvendors-pro-shipping-controller.php:              return apply_filters( 'wcv_shipping_types', array(
    admin/partials/wcvendors-pro-template-status.php:                       $template_paths     = apply_filters( 'wcv_template_overrides_scan_paths', array( 'wc-vendors', $this->plugin_base_dir . '/templates/' ) );
    includes/class-wcvendors-pro-i18n.php:      $locale = apply_filters( 'plugin_locale', get_locale(), $domain );
    includes/class-wcvendors-pro-product-category-checklist.php:                    '<label class="selectit">'. esc_html( apply_filters( 'the_category', $category->name ) ) . '</label>';
    includes/class-wcvendors-pro-product-dropdown-walker.php:               $cat_name = apply_filters( 'list_product_cats', $cat->name, $cat );
    includes/class-wcvendors-pro-ratings-controller.php:                                                            'name' => apply_filters( 'wcv_feedback_btn_text',  $feedback_text )
    includes/class-wcvendors-pro-ratings-controller.php:            $url = apply_filters( 'wcv_ratings_link_url', WCVendors_Pro_Vendor_Controller::get_vendor_store_url( $vendor_id ) . 'ratings/' );
    includes/class-wcvendors-pro-ratings-controller.php:                    $tabs[ 'vendor_ratings_tab' ] = apply_filters( 'wcv_vendor_ratings_tab', array(
    public/class-wcvendors-pro-dashboard.php:               if ( ! $products_disabled ) $quick_links['product']             = array( 'url' => apply_filters( 'wcv_add_product_url', self::get_dashboard_page_url( 'product/edit' ) ),     'label' => __( 'Add Product', 'wcvendors-pro' )  );
    public/class-wcvendors-pro-dashboard.php:               return apply_filters( 'wcv_dashboard_quick_links', $quick_links );
    public/class-wcvendors-pro-dashboard.php:               return apply_filters( 'wcv_pro_dashboard_urls', $this->dashboard_pages );
    public/class-wcvendors-pro-dashboard.php:                               wp_redirect( apply_filters( 'wcv_login_redirect', get_permalink( woocommerce_get_page_id( 'myaccount' ) ) ), 302);
    public/class-wcvendors-pro-form-helper.php:                             $html .= apply_filters('wcv_wp_input_start_' . $field['id'] , $html);
    public/class-wcvendors-pro-form-helper.php:                             $html .= apply_filters('wcv_wp_input_end_' . $field['id'], $html);
    public/class-wcvendors-pro-form-helper.php:                     $defaults            = apply_filters( 'wcv_select2_args_' . $field[ 'taxonomy' ], array(
    public/class-wcvendors-pro-form-helper.php:                             $gallery_options = apply_filters( 'wcv_product_gallery_options', array(
    public/class-wcvendors-pro-form-helper.php:             WCVendors_Pro_Form_Helper::select( apply_filters( 'wcv_country_select2', array(
    public/class-wcvendors-pro-form-helper.php:             $params = apply_filters( 'wp_terms_checklist_args', $args, $post_id );
    public/class-wcvendors-pro-order-controller.php:                $this->start_date       = ( !empty( $_SESSION[ 'PV_Session' ][ '_wcv_order_start_date_input' ] ) )   ? $_SESSION[ 'PV_Session' ][ '_wcv_order_start_date_input' ] : strtotime( apply_filters( 'wcv_order_start_date', $default_start ) );
    public/class-wcvendors-pro-order-controller.php:                $this->end_date         = ( !empty( $_SESSION[ 'PV_Session' ][ '_wcv_order_end_date_input' ] ) )     ? $_SESSION[ 'PV_Session' ][ '_wcv_order_end_date_input' ] : strtotime( apply_filters( 'wcv_order_end_date', 'now' ) );
    public/class-wcvendors-pro-order-controller.php:                self::$billing_fields = apply_filters( 'wcv_order_billing_fields', array(
    public/class-wcvendors-pro-order-controller.php:                self::$shipping_fields = apply_filters( 'wcv_order_shipping_fields', array(
    public/class-wcvendors-pro-order-controller.php:                        $order->add_order_note( apply_filters( 'wcvendors_pro_vendor_shipped_note', __( $store_name . ' has marked as shipped. ', 'wcvendors') ), $vendor_id ) ;
    public/class-wcvendors-pro-order-controller.php:                wc_get_template( 'shipping-label.php', apply_filters( 'wcvendors_pro_order_shipping_label', array(
    public/class-wcvendors-pro-order-controller.php:                $csv_headers    = apply_filters( 'wcv_order_export_csv_headers', $csv_headers );
    public/class-wcvendors-pro-order-controller.php:                $csv_rows               = apply_filters( 'wcv_order_export_csv_rows', $csv_output->format_orders_export( WCVendors_Pro_Vendor_Controller::get_orders2( get_current_user_id(), $date_range ) ) );
    public/class-wcvendors-pro-order-controller.php:                $csv_filename   = apply_filters( 'wcv_order_export_csv_filename', 'orders' );
    public/class-wcvendors-pro-order-controller.php:                return $shipping_providers = apply_filters( 'wcv_shipping_providers_list', array(
    public/class-wcvendors-pro-product-controller.php:                                      $text['notice'] = sprintf( apply_filters( 'wcv_product_updated_msg', __( 'Product Updated. <a href="%s">View product.</a>', 'wcvendors-pro' ) ), $view );
    public/class-wcvendors-pro-product-controller.php:                                      $text['notice'] = sprintf( apply_filters( 'wcv_product_updated_msg', __( 'Product Updated. <a href="%s">View product.</a>', 'wcvendors-pro' ) ), $view );
    public/class-wcvendors-pro-product-controller.php:                                      $text['notice'] = sprintf( apply_filters( 'wcv_product_review_msg', __( 'Product submitted for review. <a href="%s">Preview product.</a>', 'wcvendors-pro' ) ), $view );
    public/class-wcvendors-pro-product-controller.php:                              $text['notice'] = apply_filters( 'wcv_product_edit_problem_msg', __( 'There was a problem editing the product.', 'wcvendors-pro' ) );
    public/class-wcvendors-pro-product-controller.php:                                              $text['notice'] = sprintf( apply_filters( 'wcv_product_draft_msg',  __( 'Product draft saved.', 'wcvendors-pro' ) ), $view );
    public/class-wcvendors-pro-product-controller.php:                                              $text['notice'] = sprintf( apply_filters( 'wcv_product_draft_saved_msg', __( 'Product draft saved, pending review.', 'wcvendors-pro' ) ), $view );
    public/class-wcvendors-pro-product-controller.php:                                              $text['notice'] = sprintf( apply_filters( 'wcv_product_added_msg', __( 'Product Added. <a href="%s">View product.</a>', 'wcvendors-pro' ) ), $view );
    public/class-wcvendors-pro-product-controller.php:                                              $text['notice'] = sprintf( apply_filters( 'wcv_product_review_msg', __( 'Product submitted for review. <a href="%s">Preview product.</a>', 'wcvendors-pro' ) ), $view );
    public/class-wcvendors-pro-product-controller.php:                              $text['notice'] = apply_filters( 'wcv_product_add_problem_msg', __( 'There was a problem adding the product.', 'wcvendors-pro' ) );
    public/class-wcvendors-pro-product-controller.php:              if ( in_array( $product_type, apply_filters( 'wcv_product_meta_types',  array( 'variable', 'grouped' ) ) ) ) {
    public/class-wcvendors-pro-product-controller.php:              $found_products = apply_filters( 'woocommerce_json_search_found_products', $found_products );
    public/class-wcvendors-pro-product-controller.php:              $args = apply_filters( 'wcv_json_search_tags_args',
    public/class-wcvendors-pro-product-controller.php:              $found_tags = apply_filters( 'wcv_json_search_found_tags', $found_tags );
    public/class-wcvendors-pro-product-controller.php:              $product_status = apply_filters( 'wcv_product_status', array(
    public/class-wcvendors-pro-product-controller.php:              return apply_filters( 'wcv_product_table_columns', $columns );
    public/class-wcvendors-pro-product-controller.php:                      $row_actions = apply_filters( 'wcv_product_table_row_actions' , array(
    public/class-wcvendors-pro-product-controller.php:                                              apply_filters( 'wcv_product_table_row_actions_edit', array(
    public/class-wcvendors-pro-product-controller.php:                                              apply_filters( 'wcv_product_table_row_actions_delete', array(
    public/class-wcvendors-pro-product-controller.php:                                              apply_filters( 'wcv_product_table_row_actions_view', array(
    public/class-wcvendors-pro-product-controller.php:                      $new_row->details               = apply_filters( 'wcv_product_row_details' , sprintf('<h4>%s</h4> %s %s <br />%s %s <br />' , $product->get_title(), __( 'Categories:', 'wcvendors-pro' ),$product->get_categories(), __('Tags:', 'wcvendors-pro'), $product->get_tags() ) );
    public/class-wcvendors-pro-product-controller.php:              return apply_filters( 'wcv_product_table_rows' , $new_rows );
    public/class-wcvendors-pro-product-controller.php:              return apply_filters( 'wcv_product_table_action_column', $new_column );
    public/class-wcvendors-pro-product-controller.php:              $pagination_wrapper = apply_filters( 'wcv_product_paginate_wrapper', array(
    public/class-wcvendors-pro-product-controller.php:              $add_url = apply_filters( 'wcv_add_product_url', WCVendors_Pro_Dashboard::get_dashboard_page_url( 'product/edit/' ) );
    public/class-wcvendors-pro-product-controller.php:              return apply_filters( 'wcv_product_table_no_data_notice', $notice );
    public/class-wcvendors-pro-product-controller.php:                      'is_visible'   => apply_filters( 'woocommerce_attribute_default_visibility', 1 ),
    public/class-wcvendors-pro-public.php:                          wp_enqueue_style( 'wcv-pro-dashboard', apply_filters( 'wcv_pro_dashboard_style' , $this->base_dir . 'assets/css/dashboard' . $this->suffix . '.css' ), false, '1.0.0' );
    public/class-wcvendors-pro-public.php:                  wp_enqueue_style( 'wcv-pro-store-style', apply_filters( 'wcv_pro_store_style', $this->base_dir . 'assets/css/store' . $this->suffix . '.css' ), false, '1.0.0' );
    public/class-wcvendors-pro-public.php:                  wp_enqueue_style( 'wcv-ink',    apply_filters( 'wcv_pro_ink_style', $this->base_dir . 'assets/lib/ink-3.1.10/dist/css/ink.min.css' ), array(), '3.1.10', 'all' );
    public/class-wcvendors-pro-public.php:                          //      'variations_per_page'                 => absint( apply_filters( 'wcvendors-pro_admin_meta_boxes_variations_per_page', 15 ) )
    public/class-wcvendors-pro-reports-controller.php:              $this->start_date               = ( !empty( $_SESSION[ 'PV_Session' ][ '_wcv_dashboard_start_date_input' ] ) )       ? $_SESSION[ 'PV_Session' ][ '_wcv_dashboard_start_date_input' ] : strtotime( apply_filters( 'wcv_dashboard_start_date', $default_start ) );
    public/class-wcvendors-pro-reports-controller.php:              $this->end_date                 = ( !empty( $_SESSION[ 'PV_Session' ][ '_wcv_dashboard_end_date_input' ] ) )         ? $_SESSION[ 'PV_Session' ][ '_wcv_dashboard_end_date_input' ] : strtotime( apply_filters( 'wcv_dashboard_end_date', 'now' ) );
    public/class-wcvendors-pro-reports-controller.php:              $max_orders = apply_filters( 'wcv_recent_orders_max', 9 );
    public/class-wcvendors-pro-reports-controller.php:              $max_products = apply_filters( 'wcv_recent_products_max', 5 );
    public/class-wcvendors-pro-reports-controller.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_dashboard_start_date_input', array(
    public/class-wcvendors-pro-reports-controller.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_dashboard_end_date_input', array(
    public/class-wcvendors-pro-reports-controller.php:              WCVendors_Pro_Form_helper::submit( apply_filters( 'wcv_dashboard_update_button', array(
    public/class-wcvendors-pro-shop-coupon-controller.php:          $pagination_wrapper = apply_filters( 'wcv_shop_coupon_paginate_wrapper', array(
    public/class-wcvendors-pro-shop-coupon-controller.php:          return apply_filters( 'wcv_coupon_meta', $coupon_meta );
    public/class-wcvendors-pro-store-controller.php:                                apply_filters( 'wcv_register_post_type_vendor_store',
    public/class-wcvendors-pro-store-controller.php:                                $default_store_name = apply_filters( 'wcv_default_vendor_store_name', ucfirst( $user_data->display_name ) . __( ' Store', 'wcvendors-pro' ), $user_data );
    public/class-wcvendors-pro-store-controller.php:                return apply_filters( 'wcv_store_merge_categories', $new_terms );
    public/class-wcvendors-pro-store-controller.php:                return apply_filters('wcv_store_merge_tags', $new_terms);
    public/class-wcvendors-pro-store-controller.php:                        $sold_by                = apply_filters( 'wcv_loop_sold_by',
    public/class-wcvendors-pro-store-controller.php:                $sold_by                = apply_filters( 'wcv_product_sold_by',
    public/class-wcvendors-pro-store-controller.php:                        $ships_from     = apply_filters( 'wcv_product_ships_from',
    public/class-wcvendors-pro-store-controller.php:                        'name' => apply_filters( 'wcv_cart_sold_by_label', $sold_by_label .' ' ),
    public/class-wcvendors-pro-store-controller.php:                $name_args      = apply_filters( 'wcv_email_sold_by_name_args',
    public/class-wcvendors-pro-table-helper.php:                            'posts_per_page' => apply_filters( 'wcvendors_pro_table_post_per_page_' . $this->id, 20 ),
    public/class-wcvendors-pro-table-helper.php:            $args = apply_filters( 'wcvendors_pro_table_row_args_' . $this->id, $args );
    public/class-wcvendors-pro-table-helper.php:            $this->rows = apply_filters( 'wcvendors_pro_table_rows_' . $this->id, $results->posts, $results );
    public/class-wcvendors-pro-table-helper.php:            $this->columns = apply_filters( 'wcvendors_pro_table_columns_' . $this->id,
    public/class-wcvendors-pro-table-helper.php:            $this->actions = apply_filters( 'wcvendors_pro_table_actions_' . $this->id,
    public/class-wcvendors-pro-table-helper.php:            $this->action_column = apply_filters( 'wcvendors_pro_table_action_column_' . $this->id, 'post_title' );
    public/class-wcvendors-pro-table-helper.php:            $no_data_notice = apply_filters('wcvendors_pro_table_no_data_notice_' . $this->id, __( "No " . $this->id . "'s found") );
    public/class-wcvendors-pro-vendor-controller.php:               $args = apply_filters( 'wcv_get_vendor_products_by_id_args', $args );
    public/class-wcvendors-pro-vendor-controller.php:               $role   = apply_filters( 'wcvendors_pending_role', ( $manual ? 'pending_vendor' : 'vendor' ) );
    public/class-wcvendors-pro-vendor-controller.php:               return apply_filters( 'wcv_is_pending_vendor', $is_pending_vendor, $user_id );
    public/class-wcvendors-pro-vendor-controller.php:               return apply_filters( 'wcv_vendor_store_url', $vendor_store_url, $vendor_id );
    public/class-wcvendors-pro-vendor-controller.php:               return apply_filters( 'wcv_vendor_signup_redirect', $dashboard_url );
    public/class-wcvendors-pro-vendor-controller.php:                       $ships_from     = apply_filters( 'wcv_product_ships_from',
    public/class-wcvendors-pro-vendor-controller.php:               $my_account_msg         = apply_filters( 'wcv_my_account_msg', __( '<p>To add or edit products, view sales and orders for your vendor account, or to configure your store, visit your <a href="%s">Vendor Dashboard</a>.</p>', 'wcvendors-pro' ) );
    public/class-wcvendors-pro-vendor-controller.php:                       $html .= apply_filters( 'wcv_pagination_before', '<nav class="woocommerce-pagination">' );
    public/class-wcvendors-pro-vendor-controller.php:                       $html .= paginate_links( apply_filters( 'wcv_pagination_args', array(
    public/class-wcvendors-pro-vendor-controller.php:                       $html .= apply_filters( 'wcv_pagination_after', '</nav>' );
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_post_id', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_post_title', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::textarea( apply_filters( 'wcv_coupon_post_content', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::select( apply_filters( 'wcv_coupon_discount_type', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_apply_to_all_products', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_amount', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_free_shipping', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_sale_price_date_from', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_minimum_amount', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_maximum_amount', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_individual_use', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_exclude_sale_items', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_product_ids', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_exlude_product_ids', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_email_addresses', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_usage_limit', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_limit_usage_to_x_items', array( 
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_coupon_usage_limit_per_user', array(
    public/forms/class-wcvendors-pro-coupon-form.php:               WCVendors_Pro_Form_helper::submit( apply_filters( 'wcv_coupon_save_button', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_post_id', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_post_status', array(
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_title', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::textarea( apply_filters( 'wcv_product_description', array(
    public/forms/class-wcvendors-pro-product-form.php:                       WCVendors_Pro_Form_Helper::textarea( apply_filters( 'wcv_product_short_description', array(
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_helper::submit( apply_filters( 'wcv_product_save_button', array(
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_helper::submit( apply_filters( 'wcv_product_draft_button', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::select2( apply_filters( 'wcv_product_categories',
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_tags', array(
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_Helper::select2( apply_filters( 'wcv_product_tags_dropdown',
    public/forms/class-wcvendors-pro-product-form.php:                              $product_type = apply_filters( 'default_product_type', 'simple' );
    public/forms/class-wcvendors-pro-product-form.php:                      $product_type = apply_filters( 'default_product_type', 'simple' );
    public/forms/class-wcvendors-pro-product-form.php:              $product_type_selector = apply_filters( 'product_type_selector', array(
    public/forms/class-wcvendors-pro-product-form.php:              $product_type_options = apply_filters( 'product_type_options', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_price', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_sale_price', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_sale_price_date_from', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_sale_price_date_to', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_dowlnoad_limit', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_download_expiry', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::select( apply_filters( 'wcv_product_download_type', array(
    public/forms/class-wcvendors-pro-product-form.php:                              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_sku', array(
    public/forms/class-wcvendors-pro-product-form.php:                              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_sku', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_private_listing', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_proudct_url', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_button_text', array(
    public/forms/class-wcvendors-pro-product-form.php:                              WCVendors_Pro_Form_Helper::select( apply_filters( 'wcv_product_tax_status', array(
    public/forms/class-wcvendors-pro-product-form.php:                              WCVendors_Pro_Form_Helper::select( apply_filters( 'wcv_product_tax_class', array(
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_reviews', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_manage_stock', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_stock_qty', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::select( apply_filters( 'wcv_product_backorders', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::select( apply_filters( 'wcv_product_stock_status', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_sold_individually', array(
    public/forms/class-wcvendors-pro-product-form.php:                              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_weight', array(
    public/forms/class-wcvendors-pro-product-form.php:                              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_length', array(
    public/forms/class-wcvendors-pro-product-form.php:                              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_width', array(
    public/forms/class-wcvendors-pro-product-form.php:                              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_height', array(
    public/forms/class-wcvendors-pro-product-form.php:                              WCVendors_Pro_Form_Helper::select( apply_filters( 'wcv_product_shipping_classes', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_upsells', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_crosssells', array(
    public/forms/class-wcvendors-pro-product-form.php:                      WCVendors_Pro_Form_Helper::select( apply_filters( 'wcv_product_grouping', array(
    public/forms/class-wcvendors-pro-product-form.php:              $css_classes                            = apply_filters( 'wcv_product_meta_tabs_class', array( 'tabs-nav' ) );
    public/forms/class-wcvendors-pro-product-form.php:              $product_meta_tabs = apply_filters( 'wcv_product_meta_tabs', array(
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_shipping_fee_national', array( 
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_shipping_fee_national_qty', array(
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_shipping_fee_national_disable', array(
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_shipping_fee_national_free', array(
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_shipping_fee_international', array(
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_shipping_fee_international_qty', array(
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_shipping_fee_international_disable', array(
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_shipping_fee_international_free', array(
    public/forms/class-wcvendors-pro-product-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_handling_fee', array(
    public/forms/class-wcvendors-pro-product-form.php:              $helper_text = apply_filters( 'wcv_store_shipping_rate_table_msg', __( 'Countries must use the international standard for two letter country codes. eg. AU for Australia.', 'wcvendors-pro' ) );
    public/forms/class-wcvendors-pro-store-form.php:                WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_application_id', array(
    public/forms/class-wcvendors-pro-store-form.php:                $css_classes                            = apply_filters( 'wcv_store_tabs_class', array( 'tabs-nav' ) );
    public/forms/class-wcvendors-pro-store-form.php:                $store_tabs = apply_filters( 'wcv_store_tabs', array(
    public/forms/class-wcvendors-pro-store-form.php:                WCVendors_Pro_Form_helper::submit( apply_filters( 'wcv_store_save_button', array(
    public/forms/class-wcvendors-pro-store-form.php:                                WCVendors_Pro_Form_Helper::file_uploader( apply_filters( 'wcv_vendor_store_banner', array(
    public/forms/class-wcvendors-pro-store-form.php:                                WCVendors_Pro_Form_Helper::file_uploader( apply_filters( 'wcv_vendor_store_icon', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_paypal_address', array( 
    public/forms/class-wcvendors-pro-store-form.php:                        $store_name = apply_filters( 'wcv_default_store_name' , ucfirst( $user_data->display_name ) . __( ' Store', 'wcvendors-pro' ), $user_data );
    public/forms/class-wcvendors-pro-store-form.php:                WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_store_name', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_store_phone', array(
    public/forms/class-wcvendors-pro-store-form.php:                                $settings = apply_filters('wcv_vendor_seller_info_editor_settings', array(
    public/forms/class-wcvendors-pro-store-form.php:                                WCVendors_Pro_Form_Helper::textarea( apply_filters( 'wcv_vendor_seller_info', array(
    public/forms/class-wcvendors-pro-store-form.php:                                $settings = apply_filters('wcv_vendor_store_description_editor_settings', array(
    public/forms/class-wcvendors-pro-store-form.php:                                WCVendors_Pro_Form_Helper::textarea( apply_filters( 'wcv_vendor_store_description', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::country_select2( apply_filters( 'wcv_vendor_store_country', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_store_address1', array( 
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_store_address2', array( 
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_store_city', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_store_state', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_store_postcode', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_company_url', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_twitter_username', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_instagram_username', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_facebook_url', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_linkedin_url', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_youtube_url', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_googleplus_url', array( 
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_pinterest_url', array(
    public/forms/class-wcvendors-pro-store-form.php:                WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_shipping_national_fee', array(
    public/forms/class-wcvendors-pro-store-form.php:                WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_shipping_national_qty', array(
    public/forms/class-wcvendors-pro-store-form.php:                WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_shipping_national_free', array(
    public/forms/class-wcvendors-pro-store-form.php:                WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_shipping_national_disable', array(
    public/forms/class-wcvendors-pro-store-form.php:                WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_shipping_international_fee', array(
    public/forms/class-wcvendors-pro-store-form.php:                WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_shipping_international_qty', array(
    public/forms/class-wcvendors-pro-store-form.php:                WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_shipping_international_free', array(
    public/forms/class-wcvendors-pro-store-form.php:                WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_shipping_international_disable', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_shipping_product_fee', array(
    public/forms/class-wcvendors-pro-store-form.php:                WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_shipping_product_fee', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::textarea( apply_filters( 'wcv_vendor_shipping_policy', array(
    public/forms/class-wcvendors-pro-store-form.php:                        WCVendors_Pro_Form_Helper::textarea( apply_filters( 'wcv_vendor_shipping_return_policy', array(
    public/forms/class-wcvendors-pro-store-form.php:                WCVendors_Pro_Form_Helper::select( apply_filters( 'wcv_vendor_shipping_from', array(
    public/forms/class-wcvendors-pro-store-form.php:                $helper_text = apply_filters( 'wcv_shipping_rate_table_msg', __( 'Countries must use the international standard for two letter country codes. eg. AU for Australia.', 'wcvendors-pro' ) );
    public/forms/class-wcvendors-pro-tracking-number-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_tracking_number_order_id', array(
    public/forms/class-wcvendors-pro-tracking-number-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_tracking_number', array(
    public/forms/class-wcvendors-pro-tracking-number-form.php:              WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_tracking_number_date_shipped', array(
    public/forms/class-wcvendors-pro-tracking-number-form.php:              WCVendors_Pro_Form_Helper::nested_select( apply_filters( 'wcv_tracking_number_shipping_provider', array(
    public/forms/class-wcvendors-pro-tracking-number-form.php:              WCVendors_Pro_Form_helper::submit( apply_filters( 'wcv_tracking_number_save_button', array(
    public/forms/partials/wcvendors-pro-attributes.php:                                     $attribute_label    = apply_filters( 'woocommerce_attribute_label', $attribute['name'], $attribute['name'] );
    public/forms/wcvendors-pro-address.php:WCVendors_Pro_Form_Helper::country_select2( apply_filters( 'wcv_vendor_store_country', array(
    public/forms/wcvendors-pro-address.php:WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_store_address1', array(
    public/forms/wcvendors-pro-address.php:WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_store_address2', array(
    public/forms/wcvendors-pro-address.php:WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_store_city', array(
    public/forms/wcvendors-pro-address.php:WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_store_state', array(
    public/forms/wcvendors-pro-address.php:WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_vendor_store_postcode', array(
    public/forms/wcvendors-pro-shipping-address.php:WCVendors_Pro_Form_Helper::country_select2( apply_filters( 'wcv_store_shipping_country', array(
    public/forms/wcvendors-pro-shipping-address.php:WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_store_shipping_address1', array(
    public/forms/wcvendors-pro-shipping-address.php:WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_store_shipping_address2', array(
    public/forms/wcvendors-pro-shipping-address.php:WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_store_shipping_city', array(
    public/forms/wcvendors-pro-shipping-address.php:WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_store_state', array(
    public/forms/wcvendors-pro-shipping-address.php:WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_product_store_postcode', array(
    public/partials/order/wcvendors-pro-order-table-actions.php:                            WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_order_start_date_input', array(
    public/partials/order/wcvendors-pro-order-table-actions.php:                            WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_order_end_date_input', array(
    public/partials/order/wcvendors-pro-order-table-actions.php:                            WCVendors_Pro_Form_helper::submit( apply_filters( 'wcv_order_update_button', array(
    public/partials/product/wcvendors-pro-table-actions.php:                echo paginate_links( apply_filters( 'wcv_product_pagination_args', array(
    public/partials/shop_coupon/wcvendors-pro-table-shop-coupon-table-actions.php:          echo paginate_links( apply_filters( 'wcv_shop_coupon_pagination_args', array(
    #29412
    2341345
    Participant

    Thanks!

    This will shut me up for a while!

    #64369
    Brian
    Participant

    Hi Ben,

    I tried removing those lines of code, (they have moved slightly, but I found them) and it didn’t work. Has the “solution” to having admin able view dashboard changed at all ? I’m looking to use a code inspector similar to above, to make some styling changes.

    btw thanks for the fantastic support, worth every penny πŸ™‚

Viewing 16 posts - 1 through 16 (of 16 total)
  • The forum ‘WC Vendors Pro Support’ is closed to new topics and replies.