Banner Logo

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

Sangita Support Squad

Forum Replies Created

Viewing 15 posts - 2,536 through 2,550 (of 3,095 total)
  • Author
    Posts
  • For payments of recurring plans with PayPal kindly install WooCommerce Payments plugin and enable it and then activate PayPal. Then there will not be any issue while paying for recurring plans with PayPal.

    in reply to: error with stripe #194042

    Extremely sorry for the inconvenience. It is taking more than expected time to add the fix. But not to worry we will share the fix with you even if your subscription gets over as you faced the issue within your subscription period.

    in reply to: registration forms #194041

    Kindly confirm the customization of your registration form fully and then share the site url with us. Our team will provide you with the custom css for that.

    Not to worry @Chris
    Let me assist you with this. Whenever you are configuring booking or rental there comes a third party dependency with that. So depending on that we have to implement the dependency with ours.
    Such as WooCommerce booking gives an option to the admin for confirmation of the booking. So we have also added that option for the vendors https://prnt.sc/teq7qsM4yETf. With this unless a vendor confirms the booking the customer will not pay for that.
    However, as far as I can see WooCommerce Rental and bookings does not have any such option.
    Now if the rental plugin introduces the feature in future we would also be happy to collaborate with the plugin and add the same flow for vendors.
    Please understand It has nothing to do with the promotion strategy. We always want to present the best for our users.

    in reply to: Adding Product Video for Vendors #194033

    @Chris, I can understand your end.
    However, there are millions of plugins out there and everyone needs different plugins as per their requirements. But it is nearly impossible to provide support for all those plugins.

    That’s why we run third-party collaboration program. We are already reaching out to the plugin authors in this regard. But it is always better if you will send the team an email keeping us in the loop (contact@multivendorx.com), this does put some priority on the compatibility request.

    Now if we do not receive the same support from them there are very few things that we can do.
    That is why I have asked you to contact the plugin author.

    Chis, You don’t need to hire our service team. This is just an alternate option.

    in reply to: Some issues I am encountering. #194018

    @Ronald Basel Our team has already replied over the mail. Kindly check there.

    in reply to: ACF Positioning & Order Priority #194016

    Kindly share the code you have added for the guideline section so that we can look into that and help you accordingly.

    Currently we do not have any such plan. But in future if we get mass requests from our users we may think of implementing the flow.

    As the vendors are paying with MVX paypal marketplace or MVX paypal marketplace the payments are getting paid in real time i.e. they are becoming vendors.
    If the vendors pay through payment gateways such as bank transfer then they will be coming as pending vendor and then the admin will need to approve them to become vendors on the marketplace.

    in reply to: Adding Product Video for Vendors #194004

    @Chris you are using a third party plugin to give the vendor the option to add videos for their products.
    However, from your scenario it seems like it is not compatible with MultiVendorX.
    But you can definitely do custom code and make this compatible with us. Our service team (https://multivendorx.com/custom-development/ ) can assist you with this.
    You may also contact the responsible plugin team and ask them about the compatibility. If they need any help to make the plugin compatible with MultiVendorX we can help them in this process.

    in reply to: Live Chat Enquiries #193965
    This reply has been marked as private.
    in reply to: ACF Positioning & Order Priority #193964

    @Chris Our developer has checked that there is no such exact class using which we can modify the style segment of the custom fields.
    But we have asked our developer team to reach out to the ACF team and discuss this. If possible in our future updates we will try to improve the style segment of ACF.

    in reply to: Missing Essential Invoice Fields #193963

    Add the below code in the functions.php file of your active theme –

    
    add_action('init', 'custom_change');
    function custom_change() {
        if ( !is_user_logged_in() ) {
            
            add_filter( 'mvx_wholesale_price_loop', '__return_false' );
            add_filter( 'mvx_product_wholesale_price_html', '__return_false' );
            remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
            remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
        }
    }
    
    remove_action( 'woocommerce_after_variations_form', array($MVX_Wholesale, 'wholesale_content_display_variation_products'));
    add_action( 'woocommerce_after_variations_form', 'wholesale_content_display_variation_products');
    function wholesale_content_display_variation_products() {
        if ( is_user_logged_in() ) {
            $wholesale_price = __( 'Wholesale Price', 'wcmp-afm' );
            $currency_symbol = get_woocommerce_currency_symbol();
            $minimum_quantity = __( 'Minimum Quantity', 'wcmp-afm' );
            ?>
            <script>
            jQuery(function($) {
                var wholesale_price = '<?php echo $wholesale_price; ?>';
                var currency_symbol = '<?php echo $currency_symbol; ?>';
                var minimum_quantity = '<?php echo $minimum_quantity; ?>';
                $('form.variations_form').on('show_variation', function(event, data) { // On selected variation
                    if ("yes" == data._enable_wholesale) {
                        var t =
                            wholesale_price +
                            ": <strong>" +
                            currency_symbol +
                            data._wholesale_price +
                            "</strong> (" +
                            minimum_quantity +
                            ": <strong>" +
                            data._wholesale_quantity +
                            "</strong>)";
                        $(".single_variation").append('<div class="woocommerce-variation-wholesale">' + t + "</div>");
                    } else $(".single_variation").find(".woocommerce-variation-wholesale").remove();
                }).on('hide_variation', function() { /Not on selected variation/ });
            });
            </script>
            <?php
        }
    }
    
    Copy
    in reply to: Conditionally Remove Product Tabs for Certain Products #193956

    Once we add the fix we will let you know.

    in reply to: PDF Invoice Request #193955

    We will surely let you know.

Viewing 15 posts - 2,536 through 2,550 (of 3,095 total)