Banner Logo

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

Hide Auction details on vendor panel

MultivendorX Pro

Resolved
Viewing 4 reply threads
  • Author
    Posts
    • #192440
      Jarosław Adamczyk
      Participant

      1. How to hide an entire section “auction details” in vendor panel.
      2. How to remove only user column from this section “auction details” in vendor panel

    • #192448

      Kindly add the below code in the functions.php file of your active theme –

      
      add_action( 'init', 'remove' );
      function remove() {
          global $MVX_FRONTEND_DASHBOARD_Simple_Auction_Integration;
          remove_action( 'mvx_frontend_dashboard_after_product_excerpt_metabox_panel', array( $MVX_FRONTEND_DASHBOARD_Simple_Auction_Integration, 'auction_after_product_excerpt_content' ) );
      }
      
      Copy
    • #193567
      Jarosław Adamczyk
      Participant

      ok, that hides the whole section, but how to hide only the ‘user’ column?

    • #193596

      For this you need to override the template file.
      Kindly follow the below instruction to override the template file –
      File – html-auction-bids.php
      override path – yourtheme/mvx-pro/products/simple-auction/html-auction-bids.php.
      Alternatively you can also add the below CSS to hide the user column from the table. Just go to Admin dashboard >>MultiVendorX>>Settings >>Seller dashboard , here in the custom css field add the below css-
      .auction_bids_wrapper .auction-table tr td:nth-child(3), .auction_bids_wrapper .auction-table tr th:nth-child(3) {
      display: none;
      }

    • #195528

      Its been a while and we have not heard back from you. We presume your issue is fixed now. We are closing this thread now. If you need help or face issue in future please open a new thread.

Viewing 4 reply threads

The topic ‘Hide Auction details on vendor panel’ is closed to new replies.