Sale price not showing for product
-
after activating the WC Marketplace ,
vendor uploading a new product regular price only shows to visitor, sale price not visible to visitor
kindly help me regarding this
-
Hi @trimastir, thanks for reaching WCMp Support!!
After hearing from you, we have doubled checked the same on our end, didn’t face any such issue, as you can see here – https://wcmpdemos.com/all-in-one-demo/product/test-abc/
You can test the flow in our demo site also : https://wcmpdemos.com/all-in-one-demo/my-account/
As you are facing this issue, it can be caused due to some plugin conflict issue. Just to be sure, please disable all the plugins except WooCommerce and WC marketplace and check that again.
Please keep us posted.
now its working fine, another plugin conflict issue there
i have another issue
1. vendor dashboard : my shop , add product text in top bar not shown horizontally, it shows vertically
2. if its possible to show one product with two or more vendor
3. customer will able to buy one vendor product, will not be able to purchase another vendor product
Hi @trimastir, great to know that.
Coming to the other queries, our replies are inline :
1. vendor dashboard : my shop , add product text in top bar not shown horizontally, it shows vertically
2. if its possible to show one product with two or more vendor>> Can you please share some screenshots explaining this two requirement a bit more.
3. customer will able to buy one vendor product, will not be able to purchase another vendor product
>> In order to restrict the customer to purchase from more than one vendor, please add this code in the function.php of the active child theme :
add_action('woocommerce_add_to_cart_validation','woocommerce_add_to_cart_validation',10,3); function woocommerce_add_to_cart_validation($passed, $product_id, $quantity){ foreach (WC()->cart->get_cart() as $cart_key => $cart_item ){ $cart_vendor = get_wcmp_product_vendors($cart_item['product_id']); $product_vendor = get_wcmp_product_vendors($product_id); if($cart_vendor && $product_vendor){ if($cart_vendor->id != $product_vendor->id){ $passed = false; wc_add_notice( __( 'Another vendor product is already in your cart.', 'woocommerce' ), 'error' ); return $passed; } } } return $passed; }
We will wait for your reply.
i dont have child theme , shall i put this code in main theme functions.php file
2. if its possible to show one product with two or more vendor
check the link for one product with two or three sellers
3. if it possible to split output invoice
admin invoice – all the customer field will display
vendor invoice – street and phone number not displayHi @trimastir, our replies are inline :
I dont have child theme , shall i put this code in main theme functions.php file
>> You can add that in the active theme’s function.php. However, we always recommend you to use child theme, so that you won’t lose that at the time of updating theme.2. if its possible to show one product with two or more vendor
check the link for one product with two or three sellers
https://www.flipkart.com/sellers?pid=SHOF5DTH3PHRHHEU&otracker=hp_omu_Deals%20of%20the%20Day_3_Under%20%E2%82%B9799+%20Extra%2010%25_X3LQVBICLT60_0&fetchId=f538738c-6d8d-462b-9dcf-50c7c541b6a6.SHOF5DTH3PHRHHEU>> Our plugin lets you display the name of other vendors under the “More Vendor” tab, like this product: https://demo.dualcube.com/wordpress/wp1013/product/beanie/
3. if it possible to split output invoice
admin invoice – all the customer field will display
vendor invoice – street and phone number not display>> Our add-on WCMp PDF Invoice (https://wc-marketplace.com/product/wcmp-pdf-invoice/) lets the admin create invoice for te whole order and each vendor order. Now, you can override each invoice template and display only those field as per your requirement.
You can look into our reference further reffernce : https://wcmpdemos.com/all-in-one-demo/my-account/Let us know if you have any further query.
how to edit invoice template for vendor
- This reply was modified 6 years, 4 months ago by Jai.
vendor can able to cancel the customer order
@trimastir, A order can have products from different vendors. Hence, if a vendor cancels the order, then the whole order will be canceled.
That is why vendor will inform the admin and admin will inform the customer that the order is canceled.
Let us know if you have any further query.
1. after customer placing the order , vendor cannot able to cancel the order
there is no option for cancel under the dropdown menu
order having the option as 1.Processing 2.completed
2. after customer placing the order, purchased product price not able to edit for both the vendor and admin
when vendor uploading their new product they need to add commission for that product
please help me on this
Hi @trimastir, our replies are inline :
1. after customer placing the order, vendor cannot able to cancel the order
there is no option for cancel under the dropdown menu
order having the option as 1.Processing 2.completed
>> Only admin can cancel the order. Becasue as shared before, an order can have products from different vendors. Hence, if a vendor cancels the order, then the whole order will be canceled. So, only admin can cancel the order.
2. after customer placing the order, purchased product price not able to edit for both the vendor and admi
>> Are you referring that once a product is sold, admin cannot modify the product’s price via Wp-admin >> Products.
3.when vendor uploading their new product they need to add commission for that product
>> I am afraid, only admin can add the commision for a product. However, you can do coding level customization and add this flow.
We will wait for your reply.
1.how to remove street address address field from vendor new order invoice
2. i need to remove below field in invoice
Commission Subtotal:
Tax Subtotal:
Shipping Subtotal:1.how to remove the knowledge base and tools menu from the vendor dashboard
2.when vendor adding a new product the below tab will be removed
shipping
linked productsHi @trimastir, do you want to remove the following details from the vendor new order email ?
Tax Subtotal:
Shipping Subtotal:In order to remove the Knowladgebase and tolls add the followoing code :
add_filter('wcmp_vendor_dashboard_nav', 'callback_wcmp_vendor_dashboard_nav', 99); function callback_wcmp_vendor_dashboard_nav($vendor_nav){ unset($vendor_nav['vendor-knowledgebase']); unset($vendor_nav['vendor-tools']); return $vendor_nav; }
in order to hide the Shipping and linked prodyct add the folowoing css via WCMp >> Settings >> Vendor >> Vendor Frontend >> Custom css :
h3#ui-id-11 { display: none; } h3#ui-id-17 { display: none; }
thanks for your replay
it is worked well
for these correction u have not provided any solution
1.how to remove street address address field from vendor new order invoice
2. i need to remove below field in invoice
Commission Subtotal:
Tax Subtotal:
Shipping Subtotal:
- The topic ‘Sale price not showing for product’ is closed to new replies.