Forum Replies Created
-
AuthorPosts
-
raoulParticipant
Thanks.
Is there potentially another solution to solve my problem?
Essentially, we just want a way of putting vendors live on the website after they have uploaded a banner, email address, postcode, town, profile picture and have uploaded at least 1-2 products.
If WCMp have faced this problem before, maybe there is a better solution than allowing pending vendors to use the vendor dashboard.
raoulParticipantHow should they contact you, via this thread?
raoulParticipantOK thanks for the explanation. Are you able to speak to my developer about the custom code as Abhirup mentioned?
raoulParticipantHi,
Yes – I have a developer. But if it’s just css that that sounds quite simple to add into the child theme? Is there a CSS snippet?
Or, if you need to speak with our developer, we can arrange a call or should we use email?
Thanks
February 7, 2022 at 2:47 PM in reply to: Make product short description mandatory for vendors when adding new products #134137raoulParticipantThanks for the code. I just adding this but when testing it, it didn’t work. I’ve added a screenshot showing that I managed to submit a product through the dashboard with no short description or price.
February 6, 2022 at 1:59 PM in reply to: Make product short description mandatory for vendors when adding new products #134108raoulParticipantJust to clarify, I’m referring to when vendors add new products through the vendor dashboard. It would be cool to show an error message on the vendor dashboard when a vendor tries to add a product without a short description.
January 21, 2022 at 12:11 AM in reply to: Show the order delivery date on the vendor dashboard #133424raoulParticipantHi Tithi, thanks for your response. The link you sent is for allowing the vendor to show a delivery date for a PRODUCT on the dashboard. I would like to display the delivery time for an ORDER on the dashboard.
The plugin I’m using already stores the delivery date as meta data on the order. Therefore, I have been able to show this delivery date on WCMp vendor emails already, so I think it should be possible to display the date on the dashboard as well.
For example, on the vendor-new-order.php email template, I added the following code:
$parent_order_id = $order->get_parent_id();
$delivery_date = $parent_order_id ? get_post_meta($parent_order_id, ‘jckwds_date’, true ) : $order->get_meta(‘jckwds_date’);
?>
<p><?php printf(esc_html__(‘Your shop has received a new order through the Hi Street website and is now %s. We will collect the order from your shop on %s. The order is shown below:’, ‘dc-woocommerce-multi-vendor’), $order->get_status( ‘edit’ ), $delivery_date ); ?></p>As you can see, the middle sentence says ‘We will collect the order from your shop on <delivery_date>’, and it displays the actual order delivery date set by the delivery date plugin. As it was easy to show the delivery date on this WCMp email template, I hope that it would be possible to display on the vendor dashboard as well?
Thank you!
January 21, 2022 at 12:02 AM in reply to: Have an admin coupon with discount amount higher than admin fees #133422raoulParticipantHey, I don’t have a custom developer at the moment, but I’m not sure I’ve explained my situation clearly.
‘But now that you need conditional checking i.e. if the coupon discount is larger than the admin fees, the coupon discount is also applied to the vendor commission.’
– no, if the coupon discount is larger than admin fees, the coupon discount should NOT be applied to vendor commission. Instead, the vendor should receive the full amount they would expect without any coupons applied. Does that make sense?January 16, 2022 at 5:29 PM in reply to: Have an admin coupon with discount amount higher than admin fees #133192raoulParticipantHey there, just checking this is being looked at, thanks!
-
AuthorPosts