Banner Logo

Be a part of the family: Connect, Receive Support,
Contribute, and Reap Abundant Rewards!

MVX Support Ninja

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 4,372 total)
  • Author
    Posts
  • in reply to: Error with woocommerce 8.5.1 #216239

    @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.

    in reply to: 1.3.0 not available for download #216172

    Hi 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.0

    Sorry for the inconvenience.

    in reply to: Vendor Logo #204288

    Hi,
    Kindly add below code to your active theme function.php

    add_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;
    }
    Copy

    Regards,

    in reply to: I’m experiencing display problems in the seller’s area #197601

    Hi, we have removed this by adding this css :
    `div#wvpl-sticky-player, div#cookie-notice {
    display: none;
    }’

    in reply to: I’m experiencing display problems in the seller’s area #197573

    Hi,
    We fixed this issue in you site using below code, Kindly check this video – https://gdskavr9sw.vmaker.com/record/1uN2i37aosi1OGjs

    To 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' );
            }
        }   
    }
    Copy

    Regards,

    in reply to: Translation Issue #197285

    Hi,
    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>
    Copy

    regards,

    in reply to: After vendor Approval setup page #196873

    Hi,
    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'); 
    }
    Copy

    Regards,

    in reply to: MultiVendorX backend issue #196670

    Hi,
    We have fixed this issue in your end. Kindly check this and let us know.

    Regards,

    HI,
    Kindly tell us How to recreate the issue in our end. We will fix this in our next update.

    Regards,

    in reply to: ACF Positioning & Order Priority #195221

    Hi,
    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 );
    Copy

    Regards,

    in reply to: Vendor Order Details Exchanged Currency Problem #195131

    Hi,
    We used

    $item->get_formatted_meta_data( '' )
    Copy

    function 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,

    in reply to: ACF Positioning & Order Priority #194361

    Hi,

    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 hook

    do_action( 'mvx_frontend_dashboard_after_product_excerpt_metabox_panel', $post->ID );
    Copy

    Regards,

    in reply to: ACF Positioning & Order Priority #194302

    Hi,
    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 );
    Copy

    If 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,

    in reply to: Enhancement Request for Vendor Policies Endpoint #194295

    Hi,
    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
    }
    Copy

    Regards,

    in reply to: ACF Positioning & Order Priority #194256

    Hi,
    Give us some time, will check this by tomorrow.

    Regards,

Viewing 15 posts - 1 through 15 (of 4,372 total)