Forum Replies Created
-
AuthorPosts
-
MVX Support NinjaKeymaster
Hi @dennis, sorry to hear that you have faced this issue.
However can you please let us know how can we recreate the same on our end, so we can try to recreate the same and assist you with the solution.
MVX Support NinjaKeymaster@MaxenceTP, thanks for the access.
We are able to recreate the issue on our end. Our team is working on a fix.
Once we will have the update, will let you know.
MVX Support NinjaKeymasterHi KC, not to worry.
Our current version of MultiVendorX Pro is 1.3.0. The same was not added in the changelog.
Please download the plugin again from here – https://multivendorx.com/my-account/api-downloads/, the version will match with 1.3.0Sorry for the inconvenience.
MVX Support NinjaKeymasterHi,
Kindly add below code to your active theme function.phpadd_filter('mvx_frontend_dash_upload_script_params', 'mvx_frontend_dash_upload_script_params_default'); function mvx_frontend_dash_upload_script_params_default($image_script_params) { $image_script_params['default_logo_ratio'] = array(200, 200); return $image_script_params; }
CopyRegards,
October 28, 2023 at 2:18 PM in reply to: I’m experiencing display problems in the seller’s area #197601MVX Support NinjaKeymasterHi, we have removed this by adding this css :
`div#wvpl-sticky-player, div#cookie-notice {
display: none;
}’October 27, 2023 at 6:34 PM in reply to: I’m experiencing display problems in the seller’s area #197573MVX Support NinjaKeymasterHi,
We fixed this issue in you site using below code, Kindly check this video – https://gdskavr9sw.vmaker.com/record/1uN2i37aosi1OGjsTo fix your site add below code to your function.php of your active theme.
add_action('wp_enqueue_scripts', 'my_remove_style', PHP_INT_MAX); function my_remove_style(){ if(is_user_logged_in()){ $uid = get_current_user_id(); if( is_vendor_dashboard() && is_user_mvx_vendor($uid)){ wp_dequeue_style( 'etheme-parent-style' ); wp_dequeue_style( 'child-style' ); } } }
CopyRegards,
MVX Support NinjaKeymasterHi,
override rental-pro/templates/html-endpoint-add-inventory.php by copying it to yourtheme/mvx-pro/rental-pro/html-endpoint-add-inventory.php
then remove line no 93 to 104
or below code.<div class="form-group"> <label class="control-label col-md-3 col-sm-3"><?php esc_html_e( 'Distance Unit', 'mvx-pro' ); ?> <span class="img_tip" data-desc="<?php esc_html_e( 'If you select booking layout two then for location unit it will be applied', 'mvx-pro' ); ?>"></span></label> <div class=" col-md-6 col-sm-9 "> <select name="distance_unit_type" class="form-control regular-text distance_unit_type"> <?php foreach ( $distance_unit_type_options as $key => $option ) {?> <option value="<?php echo $key; ?>" <?php selected( $distance_unit_type, $key ); ?>><?php echo $option; ?></option> <?php } ?> </select> </div> </div>
Copyregards,
MVX Support NinjaKeymasterHi,
Kindly use below to to show the test after registration. Change the text as per your requirement.add_filter( 'mvx_pending_vendor_dashboard_message', 'mvx_pending_vendor_dashboard_message_return'); function mvx_pending_vendor_dashboard_message_return($massage) { return __('Add your massage here', 'multivendorx'); }
CopyRegards,
MVX Support NinjaKeymasterHi,
We have fixed this issue in your end. Kindly check this and let us know.Regards,
September 20, 2023 at 7:08 PM in reply to: PHP Warning – session_start() – Marketplace Membership module #196477MVX Support NinjaKeymasterHI,
Kindly tell us How to recreate the issue in our end. We will fix this in our next update.Regards,
MVX Support NinjaKeymasterHi,
We use acf_get_field_groups() core function of Advance Custom Field Plugin to get the fields, You have to study our mvx-pro/advance-custom-fields module.Also reach to the ACF plugin help to know how to get the particular fields.
in MultiVendorX you have to use below hook to add the fields in edit product page –
do_action( 'mvx_after_product_tags_metabox_panel', $post->ID );
CopyRegards,
MVX Support NinjaKeymasterHi,
We used$item->get_formatted_meta_data( '' )
Copyfunction to get item meta of the order.
Can you please share a complete scenario and detailed video what you actually want. what is ta code, and if you using any plugin to change the currency then share the plugin details.Regards,
MVX Support NinjaKeymasterHi,
1. ACF field added through below hook, so you can change the position of this hook to repositioning.
2. ACF field actually fired through this hookdo_action( 'mvx_frontend_dashboard_after_product_excerpt_metabox_panel', $post->ID );
CopyRegards,
MVX Support NinjaKeymasterHi,
kindly use below hook to add your custom field if you want to add after the product settings tab.do_action( 'mvx_after_product_excerpt_metabox_panel', $post->ID );
CopyIf you want to add after product description then
Override this template by copying it to yourtheme/MultiVendorX/vendor-dashboard/product-manager/edit-product.php
and add your custom fields after line no 164.Regards,
MVX Support NinjaKeymasterHi,
Extremely sorry for the inconvenience. Add the below code in the functions.php file of your current active theme an change as per your requirement.add_action('init', 'mvx_endpoint_custom'); function mvx_endpoint_custom() { global $MVX; remove_action( 'mvx_vendor_shop_page_policies_endpoint', array($MVX->frontend, 'mvx_vendor_shop_page_policies_endpoint' ), 10, 2 ); if (mvx_is_module_active('store-policy')) { add_action( 'mvx_vendor_shop_page_policies_endpoint', 'mvx_vendor_shop_page_policies_endpoint', 10, 2 ); } } function mvx_vendor_shop_page_policies_endpoint( $store_id, $query_vars_name ){ $_vendor_shipping_policy = get_user_meta( $store_id, '_vendor_shipping_policy', true ) ? get_user_meta( $store_id, '_vendor_shipping_policy', true ) : __( 'No policy found', 'multivendorx' ); $_vendor_refund_policy = get_user_meta( $store_id, '_vendor_refund_policy', true ) ? get_user_meta( $store_id, '_vendor_refund_policy', true ) : __( 'No policy found', 'multivendorx' ); $_vendor_cancellation_policy = get_user_meta( $store_id, '_vendor_cancellation_policy', true ) ? get_user_meta( $store_id, '_vendor_cancellation_policy', true ) : __( 'No policy found', 'multivendorx' ); ?> <div class="mvx-policie-sec"> <div class="mvx-policies-header mvx-tabcontent-header"> <div class='mvx-heading'><?php esc_html_e( 'Shop policies', 'multivendorx' ); ?></div> </div> <!-- Shipping policy --> <div> <div class="mvx-sub-heading"> <span class="dashicons dashicons-cart"></span> <p><?php esc_html_e( 'Shipping Policy', 'multivendorx' ); ?></p> </div> <div class='mvx-policie-sub-area'> <p><?php echo wp_kses_post( $_vendor_shipping_policy ); ?></p> </div> </div> <!-- Refund policy --> <div> <div class="mvx-sub-heading"> <span class="dashicons dashicons-cart"></span> <p><?php esc_html_e( 'Refund Policy', 'multivendorx' ); ?></p> </div> <div class='mvx-policie-sub-area'> <p><?php echo wp_kses_post( $_vendor_refund_policy ); ?></p> </div> </div> <!-- Cancellation policy --> <div> <div class="mvx-sub-heading"> <span class="dashicons dashicons-cart"></span> <p><?php esc_html_e( 'Cancellation/Return/Exchange Policy', 'multivendorx' ); ?></p> </div> <div class='mvx-policie-sub-area'> <p><?php echo wp_kses_post( $_vendor_cancellation_policy ); ?></p> </div> </div> <?php do_action( 'mvx_vendor_shop_page_policies', $store_id, $query_vars_name ); ?> </div> <?php }
CopyRegards,
-
AuthorPosts