Add to my store functionality

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 9 reply threads
  • Author
    Posts
    • #65180
      k.szloser
      Participant

      Vendor can add product to his store and the change all the details. All it’s ok but title and categoriesshould be locked in that case.
      It’s causing problems on product page/More Offers tab.
      If vendor change product title and/or category to totally different it’s showing under More Offers tab sugesting the same or similar product which can be very confusung to the clients.
      Could you lock title and category for products created in that way?

    • #65283
      Craig
      Participant

      I have experienced this as well.

      Here a vendor had taken an existing published listing and completely changed it (new name, description, photos etc). You can see the URL slug and the product names do not match.
      https://www.thrivinglocally.com/product/mini-videogame-console-built-in-620-games/

      If there is a way to somehow prevent this (or have the slug update to match the product name?) that would be good.

      I’m not as concerned about the categories as that is more of an elements they need to update just like the description and photos so the vendor needs to be diligent with that type if information anyway. But they have no way to edit the URL.

    • #65389
      WCFM Forum
      Keymaster

      HI,

      We already have this in plan.

      Will disable product title edit for “More Offers” products – https://ibb.co/jbvMQ9p

      Thank You

    • #65436
      Craig
      Participant

      that’s awesome.

      Can you just have the descriptor say “Title Edit disabled” (and not have the “it has other sellers” as that is not true in all cases)?

      Or perhaps you could say “Title cannot be edited once published – This is to maintain the unique URL”

    • #65573
      WCFM Forum
      Keymaster

      HI,

      “Title cannot be edited once published” – but this is not true.

      DO you want to have this option?

      Thank You

    • #112115
      spaceshipkeem
      Participant

      Is there a way where only specific products can be added to a vendors store?

      • #134129

        Hi,

        Can you explain a little more how you decide the “Specific product”?
        It is possible only filtered by any product meta.

        Thanks.

    • #133923
      ripon
      Participant

      Hello, I want to creat new product Which only vendor Can take his add to my store, all Admin created Product will show the vendor at his add to my store place but it will not publish at the page that mean customer can not see the product. Please let me know how can I do that.

      Regards
      Ripon

      • #134127

        Hello,

        If only you/admin have set the “Product publish” capability turn-off(PFA) for vendor then the vendor cannot publish this products, But in this way vendor’s all products need to published/approved by admin.

        Thanks.

        Attachments:
        You must be logged in to view attached files.
    • #134131
      ripon
      Participant

      Hello, thanks you! But I need to know we from admin want to make a product dictionary from admin side for vendor by only giving Product tittle and catagory. We need 3 things after that.

      1. All the admin crited Product can only access the vendor by add to my store option But it will not publish or visible in the website by the visitor or customers.

      2. Vendor can edit the tittle. If he edit the tittle, then the product will publish as new product not as more offer below the edited product.

      3. If the vendor not adit the product tittle then Product will show as more offer which is currently now.

      Please let me know is there any way to do that.

      Regards
      Ripon

    • #134573
      ripon
      Participant

      Hello,
      I want to go from free to the ultimate version. Can you please inform me that if i need any customisation, can you please help me? Currently i am setting up the website, so i need some customisation. Please let me know about it if it is possible?

      -I do not want to show any product in my store which has no price and also which price is 0.

      -currently i am facing one problem, i have created some item from admin only i given product tittle and category. When i login as vendor and add the product from the add to my store and give the price, product all information then it is showing only more offer section. Its not showing as a new item in the store. Its not coming also from product search option. But i want to publish it as a new item in the store as like add new product. If vendor change the product item name then only as a new product and if the vendor do not change the product tittle then the product need to show as a new product in the store and also as more offer. But both the case need to publish as new product in the store and it can be searchable. Please let me know can you give me a solution for that.

      Regards
      Ripon

    • #134976

      Hello,

      I do not want to show any product in my store which has no price and also which price is 0.
      >>Try this code –

      add_action( 'woocommerce_product_query', 'wcfmwp_hide_products_without_price' );
      function wcfmwp_hide_products_without_price( $q ){
         $meta_query = $q->get( 'meta_query' );
         $meta_query[] = array(
            'key'       => '_price',
            'value'     => '',
            'compare'   => '!='
         );
         $q->set( 'meta_query', $meta_query );
      }

      Ref: https://react2wp.com/woocommerce-hide-products-without-price-simple-fix/

      Its not showing as a new item in the store. Its not coming also from product search option.
      >>To display duplicate products in shop page, try the below code –

      add_filter('wcfm_is_allow_product_loop_duplicate_hide', '__return_false');
      

      Regarding show duplicates
      Vendor can edit the title. If he edit the title, then the product will publish as new product not as more offer below the edited product.
      >> To give permission to the vendor edit product title-
      Try this code in your theme’s functions.php – add_filter('wcfm_is_allow_product_multivendor_title_edit_disable', '__return_false');
      But not displaying in “more offer” this is not feasible in our system, because whenever vendor clicks on “Add to my store” a child product(new) gets created of an existing product.

      I want to go from free to the ultimate version. Can you please inform me that if i need any customisation, can you please help me? Currently i am setting up the website, so i need some customisation. Please let me know about it if it is possible?
      >>Please contact us here for the purpose – https://wclovers.com/woocommerce-multivendor-customization/

      Thanks.

Viewing 9 reply threads
  • You must be logged in to reply to this topic.