- Search Results
All I have is the Dashboard menu and sub-menu options. But when you click on a menu option, the content to the right does not show.
Vendors as well. It has worked fine previously. Please see the attachments.Nothing in the error logs, everything updated.
Thank youHi,
I want to make it easier for store managers to update about shipment. Especially when they need to enter Tracking URL (pls see the attachment). My ideas are:
A. Provide a dropdown-list, so that store managers can easily select. Or,
B. If it’s too difficult, provide a default value would be OK. Rather than to leave it empty.My questions are:
1. Is there any config for this in WCFM Ultimate?
2. If not, I’m thinking of creating code snippet. Anybody knows what filter/action hook suitable for this?Thank you.
Topic: checkout
good evening I use your multi-vendor maketplace and I have encountered a problem on my platform my template is woodmart. Since the last update my checkout page sends an error message and does not validate the order and sometimes valid but does not inform the client and since i tried to debug and I noticed that the problem came from WCFM – WooCommerce Multivendor Marketplace. please what to do thank you cordially
Topic: checkout
good evening I use your multi-vendor maketplace and I have encountered a problem on my platform my template is woodmart. Since the last update my checkout page sends an error message and does not validate the order and sometimes valid but does not inform the client and since i tried to debug and I noticed that the problem came from WCFM – WooCommerce Multivendor Marketplace. please what to do thank you cordially
Topic: Shipped Status not updated
Hi,
In the Vendor Dashboard, i have marked the customer orders as “Mark as Shipped”.
But there is still no orders appearing under the “Shipped” status.
Is there something wrong with your system?
After updating to 3.4.0, the delivery map at checkout has disappeared.
In an email I was advised to check the box in settings for ‘Checkout User Location’, or select Delivery by Distance. But neither of these are working.
This is working in 3.3.10, but when I update, all delivery options for the customer and notes is gone. So I have had to restore from a backup where it is working.
I have tied different settings and maybe it is a setting in Woocommerce that needs to be changed now for it to appear.
Thanks
Hi guys!
Firstly, I want to say Well Done for this plugin and thank you for offering it to the world.
Now, down to the problem. The plugin was working fine. A few days ago I updated both WP and Woocommerce and after that everything seemed to work perfect until I tried to add a new product yesterday and it just didn’t do anything.
I looked in the browser console and I saw there are quite a few JS errors.
To be honest, I don’t know exactly if one or more of them were there before the updates, but I am certain that WCFM worked fine before, as I added a few products which were fine, so it makes sense that there is an incompatibility between the modules versions.Here are my installed versions:
WP: Version 5.4.1
WooCommerce: Version 4.2.0
WCFM – WooCommerce Multivendor Marketplace: Version 3.4.0
WCFM – WooCommerce Multivendor Membership: Version 2.9.0I attached 2 images for the Add product page result – one from a vendor user logged in and another one with the admin logged in, as there are different JS error as I noticed.
Note: as you might notice, on the one with the Vendor user logged in, the product form is submitted, but it returns with all the fields in the URL (GET).
I don’t know if that’s correct, but I presume it’s not, because when I tried to add a proper (a bit longer) product description, I got an error like “the URL is too long and cannot be processed”, so I presume that the form sends the data as POST, so that might be a helpful information.In any case, I would be so grateful if you can look into this, as I am sure a lot of othere people that probably didn’t discover this problem yet or are struggling to figure it out.
Please let me know if I can help with anything or you need more information.
Thank you very much for your support.
Best regards,
Andy.
Hello,
I have found this amazing snippet for an amazing feature that would increase customer loyalty and trust. For a service marketplace, it would be great if the customer can change the order status from processing to complete, by changing the “View” button in his order list to “Approve” when the order status is processing, when he clicks approve, he will be redirected to the order details page in order to confirm his action and approve the order as completed. I have tried this code, it changes the button in the order list from “View” to “Approve” but when the customer is redirected to the order details page, there is no “Approve” button to change order status. Now Please, anyone who knows coding (Unlike me) take a look at this, and find out where the problem is, because if this is fixed, the next step would be to remove “Completed” options from the vendor order details page so he can’t change the status from processing to completed, only the customer can.// My account > Orders (list): Rename "view" action button text when order needs to be approved add_filter( 'woocommerce_my_account_my_orders_actions', 'change_my_account_my_orders_view_text_button', 10, 2 ); function change_my_account_my_orders_view_text_button( $actions, $order ) { $required_order_status = 'processing'; // Order status that requires to be approved if( $order->has_status($required_order_status) ) { $actions['view']['name'] = __("Approve", "woocommerce"); // Change button text } return $actions; } // My account > View Order: Add an approval button on the order add_action( 'woocommerce_order_details_before_order_table', 'approve_order_button_process' ); function approve_order_button_process( $order ){ // Avoiding displaying buttons on email notification if( ! ( is_wc_endpoint_url( 'view-order' ) || is_wc_endpoint_url( 'order-received' ) ) ) return; $approved_button_text = __("Approve this order", "woocommerce"); $required_order_status = 'processing'; // Order status that requires to be approved $approved_order_status = 'completed'; // Approved order status // On submit change order status if( isset($_POST["approve_order"]) && $_POST["approve_order"] == $approved_button_text && $order->has_status( $required_order_status ) ) { $order->update_status( $approved_order_status ); // Change order status } // Display a form with a button for order approval if( $order->has_status($required_order_status) ) { echo '<form class="cart" method="post" enctype="multipart/form-data" style="margin-top:12px;"> <input type="submit" class="button" name="approve_order" value="Approve this order" /> </form>'; } } // My account > View Order: Add a custom notice when order is approved add_action( 'woocommerce_order_details_before_order_table', 'approved_order_message' ); function approved_order_message( $order ){ // Avoiding displaying buttons on email notification if( ! ( is_wc_endpoint_url( 'view-order' ) || is_wc_endpoint_url( 'order-received' ) ) ) return; $approved_order_status = 'completed'; // Approved order status if( $order->has_status( $approved_order_status ) ) { wc_print_notice( __("This order is approved", "woocommerce"), 'success' ); // Message } }Just want to check if this is going to be compatible with the new woocommerce 4.2 update that was just released? Need to know before I upgrade wc