Forum Replies Created
-
AuthorPosts
-
Raju The Cool Guy
KeymasterThis reply has been marked as private.Raju The Cool Guy
KeymasterHi @arturvirabyan15,
As you can see from this video https://www.loom.com/share/a3f392441fed48c3945cddc9c195466f we are not facing any such issue on our end. you might be facing this issue due to a database conflict on your end. please delete all the fields and try again. if you still facing the same issue then use the below code in your current theme funtions.php file for one time. Then refresh your WordPress page once and then remove this code and check whether your issue is resolved or not.add_action('init', function() { delete_option('mvx_new_vendor_registration_form_data'); });Thanks
Raju The Cool Guy
KeymasterHi,
We are sorry to say we do not have any shortcodes to display vendor names. But if your current user is a vendor then you can find that vendor title in a below way$user = wp_get_current_user(); $vendor = get_mvx_vendor($user->ID); echo $vendor->page_titleThanks
October 28, 2022 at 7:37 PM in reply to: Button to make vendor able to change the statut of there order doen’t work #145444Raju The Cool Guy
KeymasterHi,
We have unchecked this option and now it’s working fine https://scrnli.com/files/vWDxael1TjS8Qj. In our next update we will change the name of these settings.
ThanksRaju The Cool Guy
KeymasterHi,
From where do you find this add_vendor_after_product_title function? this function doesn’t exist in our plugin (also not in wcmp). I think your theme developer made some customization for this. Please contact your theme developer.
ThanksOctober 20, 2022 at 5:16 PM in reply to: PHP Fatal error: Uncaught ValueError when updating the plugin #144476Raju The Cool Guy
KeymasterHi,
We have fixed this on your site. Also, we have updated our plugin to our GitHub https://github.com/multivendorx/MultiVendorX. Please check
ThanksOctober 20, 2022 at 12:19 PM in reply to: hide widget in vendor dashboard (map, qna, transaction detail) – Multivendor X #144432Raju The Cool Guy
KeymasterHi,
Use to below code in your currently active theme functions.php file to remove all those sectionadd_filter( 'mvx_before_dashboard_widget', 'filter_before_mvx_dashboard_widget', 10, 1 ); function filter_before_mvx_dashboard_widget( $vendor_dashboard_widget ) { unset($vendor_dashboard_widget['side']['mvx_vendor_transaction_details']); //remove Transaction Details widget unset($vendor_dashboard_widget['normal']['mvx_vendor_visitors_map']); // remove Visitors Map widget unset($vendor_dashboard_widget['side']['mvx_vendor_products_cust_qna']); //remove customer question return $vendor_dashboard_widget; }For https://multivendorx.com/support-forum/topic/how-to-hide-withdrawal-parts-in-vendor-dashboard/#post-144303 this thread please follow the below direction –
Override this template by copying it to yourtheme/MultiVendorX/vendor-dashboard/dashboard-widgets/mvx-vendor-stats-reports.php
then remove lines no 48 – 52 and 58 (as per the initial line)
ThanksOctober 19, 2022 at 8:30 PM in reply to: Additional fields from a Add On Plugin need to be included in ENQUIRY FORM #144326Raju The Cool Guy
KeymasterThis reply has been marked as private.Raju The Cool Guy
KeymasterThis reply has been marked as private.Raju The Cool Guy
KeymasterHi,
We have added the fix in our git branch. Please download it from here https://github.com/wcmarketplace/dc-woocommerce-multi-vendor. And let us know if this issue is fixed or not.
ThanksRaju The Cool Guy
KeymasterGreat to know that @Sam Pryor
Raju The Cool Guy
KeymasterHi,
We have provided code here https://wordpress.org/support/topic/variations-not-showing-price/.
ThanksRaju The Cool Guy
KeymasterThis reply has been marked as private.Raju The Cool Guy
KeymasterHi,
check this code https://github.com/wcmarketplace/dc-woocommerce-multi-vendor/blob/master/classes/class-wcmp-product.php#L965
you might put the wrong term id. check that line. Do the same as mentioned above.
ThanksRaju The Cool Guy
KeymasterHi,
Taxonomy is the same as woocommerce. In our case it is dc_vendor_shop.
2nd one is right
Thanks -
AuthorPosts