Banner Logo

Be a part of the family: Connect, Receive Support,
Contribute, and Reap Abundant Rewards!

Some frontend dashboard questions and a few more.

WCMp Core

Resolved
Viewing 13 reply threads
  • Author
    Posts
    • #141181
      l.gan
      Participant

      Hello

      Thanks for the great features in your plugin.
      I will hide my further questions because I am not going to promote anything and love your plugin very much.

    • #141183
      l.gan
      Participant
      This reply has been marked as private.
    • #141193
      This reply has been marked as private.
    • #141278
      l.gan
      Participant
      This reply has been marked as private.
    • #141281
      l.gan
      Participant
      This reply has been marked as private.
    • #141284
      l.gan
      Participant
      This reply has been marked as private.
    • #141182
      l.gan
      Participant
      This reply has been marked as private.
    • #141389

      Hi, , our replies are inline :

      1. I would like for the administrator to show his backlog in the second column to the suborder. (Administrator’s fee) and for the vendor, additionally 2 columns to show the total order amount in his vendor. As much as possible? On the question of the photo Question 1. I think that your answer is – with every half-order, this is simply the best solution.

      >> TO display admin fee for vendor, add this code in the function.php of the theme :

      add_filter(‘wcmp_datatable_order_list_table_headers’,’new_wcmp_datatable_order_list_table_headers’);
      function new_wcmp_datatable_order_list_table_headers($menue_tab) {
      $menue_tab[‘admin_earning’] = array ( ‘label’ => ‘Admin Earning’ );
      return $menue_tab;
      }

      add_filter(‘wcmp_datatable_order_list_row_data’, ‘new_wcmp_datatable_order_list_row_data’);
      function new_wcmp_datatable_order_list_row_data($menue_tab, $id) {
      $total_earning = get_post_meta( $menue_tab[‘order_id’], ‘_order_total’, true);
      $commission_id = get_post_meta( $menue_tab[‘order_id’], ‘_commission_id’, true);
      $vendor_earning = get_post_meta( $commission_id, ‘_commission_amount’, true);
      $shipping_amt = get_post_meta($id, ‘_shipping’, true);
      $tax_amt = get_post_meta($id, ‘_tax’, true);
      $vendor_net_earning = (floatval($vendor_earning) + floatval($shipping_amt) + floatval($tax_amt));
      $admin_earning = floatval($total_earning) – floatval($vendor_net_earning);
      $menue_tab[‘admin_earning’] = number_format($admin_earning, 2);
      return $menue_tab;
      }

      2. I improved the dashboard itself a little, in any case, this is great news!

      Please also take into account the dashboard:
      a. Add a tab to the menu (left) – returns
      b. Add a tab to the menu (on the left) – questions to the vendor

      >> We have added this in our list.

      3. Is it possible to add text to the icon (see photo)? For example Rocket icon and text: Traffic”?

      >> You want to add hover, for now this is not supported. But we will add this in our future update.

      The team will check the text issue and get back to you.

      • #141396
        l.gan
        Participant

        Thanks a lot,

        i added this t code but there is a syntax error. Please take a look

    • #141395

      For the 4th point ->
      We will fix this in our next update – for now Override plugins/wcmp-vendor_shop_seo/templates/seo/add-product-yoast.php template by copying it to yourtheme/wcmp-vendor-seo/seo/add-product-yoast.php

      then change the name from line no – 30

      Regards,

    • #141407
      l.gan
      Participant

      5. Custom CSS Style (Settings-Seller Interface) does not support “\” character

      For example, I changed the style of the icon and changed it to something else:
      content: “\e92f”; ., I add code in “Custom CSS Styles”

      .ico-right-arrow-icon:before {
      content: “\e92f”;
      margin-left: 10px;
      FONT-WEIGHT: 600;
      }

      I click save.

      And all “\” characters disappear (the rest of the code remains).
      And the saved result looks like:

      .ico-right-arrow-icon:before {
      content: “e92f”;
      margin-left: 10px;
      FONT-WEIGHT: 600;
      }

      And accordingly, in the dashboard I see only instead of an icon.

      Please check it out. Thanks

    • #141413
      l.gan
      Participant

      6. My vendor rights settings are as follows:
      (please see the photo) but I don’t understand how to add a promotional code from the vendor’s dashboard?

      I don’t see fields in the vendor dashboard for creating a promo code (coupon)…

      Please tell me, maybe I’m doing something wrong or have the wrong settings?
      Thank you, sorry for so many questions.

    • #141458

      @l.gan, as you have enabled submit coupon option, then the vendor can see this tab : https://prnt.sc/9fsJ_8qaaiM2

      As you are still facing issues, please so share a temporary admin, and vendor access so we can check.
      While sharing the access don’t forget to mark the response as private.

    • #141885
      l.gan
      Participant

      Thanks, this issue has been resolved.

    • #141915

      @l.gan, thanks for the update

Viewing 13 reply threads

The topic ‘Some frontend dashboard questions and a few more.’ is closed to new replies.