seller Announcements

MultivendorX Pro

Resolved
Viewing 31 reply threads
  • Author
    Posts
    • #196398
      kevajo
      Participant

      1-When we place a seller ad, we have to select the sellers one by one to send them the message. It’s tedious for us, who have more than 600 sellers.
      In the old version, you could select all the sellers.
      Please check this in Announcements.
      2- I asked you for the custom code to delete the header on the seller store page.

      Thank you

    • #196401

      @kevajo Our replies are inline with your queries –
      1-When we place a seller ad, we have to select the sellers one by one to send them the message. It’s tedious for us, who have more than 600 sellers.
      In the old version, you could select all the sellers.
      Please check this in Announcements.
      >>We have added this for our future enhancements. You keep the track of this enhancement from here https://github.com/multivendorx/MultiVendorX/issues/515.
      2- I asked you for the custom code to delete the header on the seller store page.
      Thank you
      >> Kindly create a staging site and share staging site url, temporary admin and ftp access with us and also share some screenshot of the section you want to remove so that we can check and help you accordingly.
      While sharing the access do not forget to mark your reply as private.

    • #196412
      kevajo
      Participant
      This reply has been marked as private.
    • #196416

      @kevajo kindly share a vendor access too. and also a screenshot showing the section you want to remove from the vendor store page.

    • #196417
      kevajo
      Participant
      This reply has been marked as private.
    • #196423

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

      
      add_action('init', 'remove_store_page_header');
      function remove_store_page_header() {
          global $MVX;
          remove_action('woocommerce_archive_description', array($MVX->frontend, 'product_archive_vendor_info'), 10);
          remove_action('mvx_archive_description', array($MVX->frontend, 'product_archive_vendor_info'), 10);
      }
      
      Copy
    • #196427
      kevajo
      Participant
      This reply has been marked as private.
    • #196428
      kevajo
      Participant

      is it okay now

    • #196429
      kevajo
      Participant
      This reply has been marked as private.
    • #196430

      Glad to hear that.

    • #196432
      kevajo
      Participant
      This reply has been marked as private.
    • #196435
      kevajo
      Participant
      This reply has been marked as private.
    • #196437

      @kevajo Once you add the code on your end the vendor store header will be removed. The store name will remain the same as before (https://prnt.sc/CpqUKPjztFY_) (https://prnt.sc/9UWt-kfM-W45).

    • #196439
      kevajo
      Participant
      This reply has been marked as private.
    • #196443

      Kindly explain the flow that you are looking for more in detail so that we can help you accordingly.

    • #196466
      kevajo
      Participant

      I want to create a personalized page for the seller store

    • #196472

      @kevajo You can use the below filter to implement the flow on your end –

      
      apply_filters('mvx_vendor_shop_permalink', esc_url($vendor->permalink))
      
      Copy
    • #196474
      kevajo
      Participant
      This reply has been marked as private.
    • #196475

      Add the below code in the functions.php file of your current active theme –

      
      add_filter('mvx_vendor_shop_permalink', 'link_callback');
      function link_callback($permalink) {
          $permalink = "kevajo.com/newlink";
          return $permalink;
      }
      
      Copy
    • #196479
      kevajo
      Participant
      This reply has been marked as private.
    • #196495

      @kevajo You need to put the new page link here https://prnt.sc/ciQ90WZKdhke. Then the vendor will be redirected to the page when clicking on My shop option in the vendor dashboard. Kindly check the video for better understanding https://watch.screencastify.com/v/wzNTjei5OzeX9ncDRVWr.

    • #196524
      kevajo
      Participant
      This reply has been marked as private.
    • #196539

      @kevajo Kindly create a page first where you want your vendors to get redirected to when clicking on My shop and then put the page link in the code. We have checked this and as shared earlier the code is working fine.
      Now as the code is not working on your end, kindly let us know if we can use the code on the site that you have shared with us earlier. Also share the page link where you want your vendors to get redirected to when clicking on the My shop option in the vendor dashboard.

    • #196540
      kevajo
      Participant
      This reply has been marked as private.
    • #196543

      We have checked the code on your end and the redirection is working fine. Kindly check the video https://watch.screencastify.com/v/iw9uCBf23HS9cllWreUp.

    • #196544
      kevajo
      Participant
      This reply has been marked as private.
    • #196548

      @kevajo kindly let us know in which places you want to replace the vendor store page with your custom page. We will provide you with the needed hook/filters using which you will have to implement the flow on your end.

    • #196549
      kevajo
      Participant
      This reply has been marked as private.
    • #196590

      You need to override the vendor_tab.php template file( in line no 36 this portion $vendor->permalink) . You need to follow the below path to override the template.
      yourtheme/MultiVendorX/vendor_tab.php

    • #196745
      kevajo
      Participant

      hello

    • #196747

      Hi @kevajo kindly let us know how may we help you.

    • #214462

      We presume your query is soved now. e are closing this thread. If you need help or face issue in future please create new support ticket.

Viewing 31 reply threads

The topic ‘seller Announcements’ is closed to new replies.